mirror of
https://github.com/Mercury-Language/mercury.git
synced 2026-04-19 19:33:46 +00:00
14 lines
368 B
Mathematica
14 lines
368 B
Mathematica
%---------------------------------------------------------------------------%
|
|
% vim: ts=4 sw=4 et ft=mercury
|
|
%---------------------------------------------------------------------------%
|
|
|
|
:- module intermod_unused_args2.
|
|
:- interface.
|
|
|
|
:- pred callee(int::in, int::in, int::in, int::out) is det.
|
|
|
|
:- implementation.
|
|
|
|
:- pragma no_inline(callee/4).
|
|
callee(_, _, _, 4).
|