mirror of
https://github.com/Mercury-Language/mercury.git
synced 2026-04-23 13:23:47 +00:00
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.
16 lines
159 B
Mathematica
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.
|
|
|