Files
mercury/tests/hard_coded/user_defined_equality2.m
Julien Fischer 1f6d83692a Update programming style in tests/hard_coded.
tests/hard_coded/*.m:
    Update programming style, unless doing so would change
    the meaning of the test, in particular:

    - use '.' as a module qualifier in place of '__'
    - use {write,print}_line where appropriate
    - use if-then-else in place of C -> T ; E
    - use state variables in place of DCGs

tests/hard_coded/dir_test.m:
    Document what the expected outputs correspond to.

    Use a uniform module qualifier in the output.

tests/hard_coded/dir_test.exp*:
    Conform to the above change.
2021-01-07 13:58:12 +11:00

40 lines
951 B
Mathematica

%---------------------------------------------------------------------------%
% vim: ts=4 sw=4 et ft=mercury
%---------------------------------------------------------------------------%
%
% This is a regression test.
%
% The Mercury compiler of 27/10/2000 failed this test due to overeager
% specialization of unifications involving no-tag types with user-defined
% equality.
:- module user_defined_equality2.
:- interface.
:- import_module io.
:- pred main(io::di, io::uo) is cc_multi.
:- implementation.
:- import_module std_util.
:- type foo ---> foo(int)
where equality is foo_equal.
:- pred foo_equal(foo::in, foo::in) is semidet.
foo_equal(_, _) :-
semidet_succeed.
main(!IO) :-
( if unify_no_tag(foo(1), foo(2)) then
io.write_string("yes\n", !IO)
else
io.write_string("no\n", !IO)
).
:- pred unify_no_tag(T::in, T::in) is semidet.
:- pragma type_spec(unify_no_tag/2, T = foo).
unify_no_tag(T, T).