mirror of
https://github.com/Mercury-Language/mercury.git
synced 2026-04-25 14:24:11 +00:00
14 lines
306 B
Mathematica
14 lines
306 B
Mathematica
%---------------------------------------------------------------------------%
|
|
% vim: ts=4 sw=4 et ft=mercury
|
|
%---------------------------------------------------------------------------%
|
|
|
|
:- module unused_args_analysis2.
|
|
|
|
:- interface.
|
|
|
|
:- pred p2(int::in, int::out) is det.
|
|
|
|
:- implementation.
|
|
|
|
p2(_, 1).
|