Files
mercury/tests/invalid/undef_imported_mode.m
2021-11-02 01:23:13 +11:00

22 lines
490 B
Mathematica

%---------------------------------------------------------------------------%
% vim: ts=4 sw=4 et ft=mercury
%---------------------------------------------------------------------------%
:- module undef_imported_mode.
:- interface.
:- import_module io.
:- pred main(io::di, io::uo) is det.
%---------------------------------------------------------------------------%
:- implementation.
:- import_module undef_imported_mode_2.
main(!IO) :-
bad(42, N),
io.write_int(N, !IO).