Files
mercury/tests/general/commit_bug.m
Zoltan Somogyi ecb5e4a9e6 Update the style of many test cases.
tests/declarative_debugger/*.m:
tests/exceptions/*.m:
tests/general/*.m:
tests/grade_subdirs/*.m:
tests/purity/*.m:
tests/submodules/*.m:
tests/typeclasses/*.m:
    Update programming style.

tests/declarative_debugger/*.inp:
    Update line numbers in breakpoint commands.
tests/declarative_debugger/*.exp:
    Update expected line numbers.

tests/exceptions/Mercury.options:
tests/general/Mercury.options:
    Disable some warnings that are irrelevant to the test.
2021-07-25 23:26:17 +10:00

57 lines
1.1 KiB
Mathematica

%---------------------------------------------------------------------------%
% vim: ts=4 sw=4 et ft=mercury
%---------------------------------------------------------------------------%
%
% This tests the case of committing across a nondet goal in a nondet
% context. There was a bug in this, which this test case exercised.
:- module commit_bug.
:- interface.
:- import_module io.
:- pred main(io::di, io::uo) is det.
:- implementation.
:- import_module int.
:- import_module list.
:- import_module solutions.
main(!IO) :-
solutions(test, List),
print_intlist(List, !IO).
:- pred test(int::out) is multi.
test(Val) :-
( if some [X]
list.member(X, [1, 2, 3, 4, 5])
then
( if some [Z] (
some [Y] foo(X, Y),
foo(X, Z)
)
then
Val = Z
else
Val = -1
)
else
Val = -2
).
:- pred foo(int::in, int::out) is nondet.
foo(X, X).
foo(_, 7).
:- pred print_intlist(list(int)::in, io::di, io::uo) is det.
print_intlist([], !IO).
print_intlist([X | L], !IO) :-
io.write_int(X, !IO),
io.nl(!IO),
print_intlist(L, !IO).