mirror of
https://github.com/Mercury-Language/mercury.git
synced 2025-12-15 22:03:26 +00:00
tests/valid/*: Renamed `*.nl' as `*.m'. Added a few new test cases. Removed a couple of duplicate test cases. Fixed up the Mmake file so that `mmake check' now works.
8 lines
94 B
Mathematica
8 lines
94 B
Mathematica
:- module error.
|
|
:- import_module require.
|
|
|
|
:- pred t(int::out) is det.
|
|
t(_X) :-
|
|
error("").
|
|
|