mirror of
https://github.com/Mercury-Language/mercury.git
synced 2026-04-16 01:43:35 +00:00
26 lines
437 B
Mathematica
26 lines
437 B
Mathematica
%---------------------------------------------------------------------------%
|
|
% vim: ts=4 sw=4 et ft=mercury
|
|
%---------------------------------------------------------------------------%
|
|
|
|
:- module multidet_test.
|
|
|
|
:- interface.
|
|
|
|
:- pred test_pred is det.
|
|
|
|
:- implementation.
|
|
|
|
:- import_module std_util.
|
|
|
|
test_pred :-
|
|
test_pred_2.
|
|
|
|
:- pred test_pred_2 is multi.
|
|
|
|
test_pred_2 :-
|
|
(
|
|
semidet_succeed
|
|
;
|
|
true
|
|
).
|