mirror of
https://github.com/Mercury-Language/mercury.git
synced 2026-04-21 04:13:46 +00:00
19 lines
261 B
Mathematica
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
|
|
).
|