mirror of
https://github.com/Mercury-Language/mercury.git
synced 2026-04-21 12:23:44 +00:00
17 lines
401 B
Mathematica
17 lines
401 B
Mathematica
%---------------------------------------------------------------------------%
|
|
% vim: ts=4 sw=4 et ft=mercury
|
|
%---------------------------------------------------------------------------%
|
|
|
|
:- module undef_imported_mode_2.
|
|
|
|
:- interface.
|
|
|
|
:- pred bad(int, int).
|
|
:- mode bad(int, out) is det.
|
|
|
|
%---------------------------------------------------------------------------%
|
|
|
|
:- implementation.
|
|
|
|
bad(N, N).
|