mirror of
https://github.com/Mercury-Language/mercury.git
synced 2026-04-22 04:43:53 +00:00
16 lines
172 B
Mathematica
16 lines
172 B
Mathematica
:- module missing_det_decls.
|
|
:- interface.
|
|
|
|
:- pred exp1.
|
|
|
|
:- pred exp2(int).
|
|
:- mode exp2(out).
|
|
|
|
:- implementation.
|
|
|
|
:- pred loc1.
|
|
|
|
:- pred loc2(int).
|
|
:- mode loc2(out).
|
|
|