Files
mercury/tests/valid/stack_alloc.nl
Fergus Henderson 08e7e85d41 Various minor changes; added a bunch of new test files.
tests/valid/*:
	Various minor changes; added a bunch of new test files.
1994-10-02 16:43:18 +00:00

23 lines
210 B
Plaintext

:- module stack_alloc.
:- pred in(int::in) is semidet.
:- pred out(int::out) is det.
:- pred p is semidet.
p :-
(
out(X),
out(Y),
p,
in(X),
in(Y)
;
out(A),
out(B),
p,
in(A),
in(B)
).