mirror of
https://github.com/Mercury-Language/mercury.git
synced 2026-04-21 04:13:46 +00:00
20 lines
456 B
Mathematica
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).
|