mirror of
https://github.com/Mercury-Language/mercury.git
synced 2026-04-18 19:03:45 +00:00
as a module qualifier. tests/general/commit_bug.m: tests/general/mode_info_bug.m: tests/general/partition.m: tests/hard_coded/string_alignment.m: Delete `nl' predicate (and replace calls with calls to `io__nl') to avoid ambiguities with `io__nl'. tests/general/partition.m: Rename `write' as `write_s' to avoid ambiguities with `io__write'. tests/warnings/singleton_test.m: tests/warnings/singleton_test.exp: tests/warnings/pragma_source_code.m: tests/warnings/pragma_source_code.exp: s/append/my_append/g to avoid ambiguities with `list__append'. tests/general/parse_list.m: tests/general/semidet_map.m: s/meta__/meta_/g to avoid errors about defining `meta__blah' in a module other than `meta'. tests/hard_coded/qual_strang.m: tests/hard_coded/qual_strung.m: s/string__//g to avoid errors about defining `string__blah' in a module other than `string'. tests/valid/middle_rec_bug.m: s/garbage_out__/garbage_out_/g to avoid errors about defining `garbage_out__blah' in a module other than `garbage_out'. tests/hard_coded/qual_basic_test.m: tests/hard_coded/qual_adv_test.m: Eliminate double quantifiers, e.g. delete the `io__' in `io:io__write_string'. Also test calling `write_string' without `io:' or `io__'.
30 lines
559 B
Mathematica
30 lines
559 B
Mathematica
:- module qual_basic_test.
|
|
|
|
% A test to ensure qualified predicates, function calls
|
|
% and higher-order constants are parsed correctly.
|
|
|
|
:- interface.
|
|
|
|
:- import_module io.
|
|
|
|
:- pred qual_basic_test:main(io__state::di, io__state::uo) is det.
|
|
|
|
:- implementation.
|
|
|
|
:- import_module int.
|
|
|
|
qual_basic_test:main -->
|
|
io:write_string("Gotcha1!\n"),
|
|
{ A is qual_basic_test:test },
|
|
{ X is int:(A + 2) },
|
|
io:write_int(X),
|
|
io__write_string("\n"),
|
|
{ Pred = int:max },
|
|
{ call(Pred, 1, 2, Y) },
|
|
io__write_int(Y),
|
|
write_string("\n").
|
|
|
|
:- func test = int.
|
|
|
|
test = 2.
|