Files
mercury/tests/valid/det_inference.m
Fergus Henderson fa77e70a46 General cleanup of the test suite directories.
tests/valid/*:
	Renamed `*.nl' as `*.m'.
	Added a few new test cases.
	Removed a couple of duplicate test cases.
	Fixed up the Mmake file so that `mmake check' now works.
1995-11-14 08:03:46 +00:00

16 lines
159 B
Mathematica

:- module det_inference.
:- pred p1 is det.
:- pred p2.
:- pred p3.
:- pred p4.
:- pred p5.
p1 :- p2.
p2 :- p3.
p3 :- p4.
p4 :- p5.
p5 :- true.
p5 :- true.