Files
mercury/tests/valid/multidet_test.m
Fergus Henderson abcac55278 Add some new test cases.
Estimated hours taken: 1

tests/valid:
	Add some new test cases.
1996-05-14 13:49:57 +00:00

19 lines
261 B
Mathematica

:- module multidet_test.
:- import_module std_util.
:- implementation.
:- pred test_pred is det.
test_pred :- test_pred_2.
:- pred test_pred_2 is multidet.
test_pred_2 :-
(
semidet_succeed
;
true
).