mirror of
https://github.com/Mercury-Language/mercury.git
synced 2026-04-22 12:53:47 +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.
9 lines
101 B
Mathematica
9 lines
101 B
Mathematica
:- module complicated_unify.
|
|
|
|
:- type t ---> f(int).
|
|
|
|
:- pred p(t::in, t::in) is semidet.
|
|
|
|
p(X, X).
|
|
|