Files
mercury/tests/valid/undead_proc.m
Zoltan Somogyi 33141e5fc7 Added three old regression tests.
Estimated hours taken: 1

Added three old regression tests.
1996-07-22 09:04:11 +00:00

14 lines
150 B
Mathematica

:- module undead_proc.
:- interface.
% no exported preds!
:- implementation.
:- pred p(int::out) is det.
:- pragma(export, p(out), "p").
p(42).