Files
mercury/tests/warnings/double_underscore.m
2015-02-27 15:41:25 +11:00

14 lines
302 B
Mathematica

%---------------------------------------------------------------------------%
% vim: ts=4 sw=4 et ft=mercury
%---------------------------------------------------------------------------%
:- module double_underscore.
:- interface.
:- pred p(int::in, int::out) is det.
:- implementation.
p(_X, _X).