Files
mercury/tests/valid_seq/opt_det_warn.m
2020-11-15 08:02:47 +11:00

20 lines
456 B
Mathematica

%---------------------------------------------------------------------------%
% vim: ts=4 sw=4 et ft=mercury
%---------------------------------------------------------------------------%
%
% Check that we don't emit inferred erroneous warnings for opt imported
% predicates.
%
:- module opt_det_warn.
:- interface.
:- import_module io.
:- pred main(io::di, io::uo) is det.
:- implementation.
:- import_module opt_det_warn_2.
main(!IO) :-
foo(!IO).