Files
mercury/tests/hard_coded/trans_intermod_user_eq.m
Zoltan Somogyi 2402a91705 Rename two test cases.
tests/hard_coded/Mmakefile:
    Rename multi_arm_switch.m to multi_arm_switch_1.m, since there is
    also a separate test named multi_arm_switch_2.m.

    Shorten the name of the trans_intermod_user_equality test case
    to trans_intermod_user_eq.

tests/hard_coded/Mercury.options:
    As above.

    Fix references to trans_intermod_user_eq's helper modules.

tests/hard_coded/multi_arm_switch_1.exp:
tests/hard_coded/multi_arm_switch_1.inp:
tests/hard_coded/multi_arm_switch_1.m:
tests/hard_coded/trans_intermod_user_eq.exp:
tests/hard_coded/trans_intermod_user_eq.m:
tests/hard_coded/trans_intermod_user_eq_helper_1.m:
tests/hard_coded/trans_intermod_user_eq_helper_2.m:
2025-12-07 10:16:39 +11:00

20 lines
473 B
Mathematica

%---------------------------------------------------------------------------%
% vim: ts=4 sw=4 et ft=mercury
%---------------------------------------------------------------------------%
:- module trans_intermod_user_eq.
:- interface.
:- import_module io.
:- pred main(io::di, io::uo) is cc_multi.
:- implementation.
:- import_module trans_intermod_user_eq_helper_1.
main(!IO) :-
make_bar(0, 1, Bar),
use_bar(Bar, N),
io.write_int(N, !IO),
io.nl(!IO).