Files
mercury/tests/invalid/missing_det_decls.m
Fergus Henderson b7ce625178 Rename *.nl as *.m.
tests/invalid:
	Rename *.nl as *.m.
1995-07-11 13:12:09 +00:00

16 lines
172 B
Mathematica

:- module missing_det_decls.
:- interface.
:- pred exp1.
:- pred exp2(int).
:- mode exp2(out).
:- implementation.
:- pred loc1.
:- pred loc2(int).
:- mode loc2(out).