mirror of
https://github.com/Mercury-Language/mercury.git
synced 2026-05-01 17:24:34 +00:00
8 lines
93 B
Plaintext
8 lines
93 B
Plaintext
:- module error.
|
|
:- import_module require.
|
|
|
|
:- pred t(int::out) is det.
|
|
t(X) :-
|
|
error("").
|
|
|