Files
mercury/tests/invalid/uniq_modes.m
Zoltan Somogyi 3dc4babb24 Update the style of more test cases.
And update expected output files for changes in line numbers.
2021-07-27 13:29:46 +10:00

21 lines
483 B
Mathematica

%---------------------------------------------------------------------------%
% vim: ts=4 sw=4 et ft=mercury
%---------------------------------------------------------------------------%
:- module uniq_modes.
:- interface.
:- import_module io.
:- pred main(io, io).
:- mode main(di, uo) is det.
:- implementation.
main(In, _Out) :-
io.write("looking for", In, Int1),
io.nl(Int1, _Int2),
fail.
main(In, Out) :-
io.write("not found", In, Int),
io.nl(Int, Out).