Files
mercury/tests/valid/multidet_test.m
Zoltan Somogyi c03b11ca48 Update the style of more test cases.
And updated expected outputs for changed line numbers.
2021-07-27 19:29:21 +10:00

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
).