mirror of
https://github.com/Mercury-Language/mercury.git
synced 2026-05-01 17:24:34 +00:00
Estimated hours taken: 3 Branches: main Gets the tests in tests/invalid working in the il grade. compiler/options.m: Add a new developer option, --no-automatic-intermodule-optimization. This is used to turn off intermodule optimization in the tests/invalid directory so that the error messages are no longer generated during the --make-optimization-interface process. compiler/handle_options.m: Test automatic-intermodule-optimization when determining whether to turn intermodule optimization on in the il grade. tests/invalid/Mercury.options: tests/invalid/purity/Mercury.options: Add --no-automatic-intermodule-optimization. tests/invalid/foreign_singleton.err_exp2: tests/invalid/foreign_type_2.err_exp2: tests/invalid/pragma_c_code_dup_var.err_exp2: tests/invalid/pragma_c_code_no_det.err_exp2: Add a second expected error message for non C backends. tests/invalid/impure_method_impl.m: tests/invalid/multimode_missing_impure.m: tests/invalid/multimode_syntax.m: tests/invalid/pragma_c_code_no_det.m: tests/invalid/purity/impure_func_t2.m: tests/invalid/purity/impure_func_t3.m: tests/invalid/purity/impure_func_t4.m: tests/invalid/purity/impure_func_t5.m: tests/invalid/purity/impure_func_t7.m: tests/invalid/purity/impure_pred_t1.m: tests/invalid/purity/impure_pred_t2.m: tests/invalid/purity/purity.m: Add Mercury implementations of foreign_code predicates.
51 lines
1.0 KiB
Mathematica
51 lines
1.0 KiB
Mathematica
:- module multimode_missing_impure.
|
|
:- interface.
|
|
:- import_module io.
|
|
|
|
:- pred main(io__state::di, io__state::uo) is det.
|
|
|
|
:- implementation.
|
|
|
|
main -->
|
|
{ In = 42 },
|
|
{ test0 },
|
|
{ test1(In) },
|
|
{ test1(_Out0) },
|
|
{ test2(In, In) },
|
|
{ test2(In, _Out1) },
|
|
{ test2(_Out2, In) },
|
|
{ test2(_Out3, _Out4) }.
|
|
|
|
:- pred test0.
|
|
:- mode test0 is det.
|
|
test0 :-
|
|
puts("test0").
|
|
|
|
% This should be declared impure, or promise pure
|
|
:- pred test1(int).
|
|
:- mode test1(in) is det.
|
|
:- mode test1(out) is det.
|
|
test1(_::in) :-
|
|
puts("test1(in)").
|
|
test1(0::out) :-
|
|
puts("test1(out)").
|
|
|
|
% This should be declared impure, or promise pure
|
|
:- pred test2(int, int).
|
|
:- mode test2(in, in) is det.
|
|
:- mode test2(in, out) is det.
|
|
:- mode test2(out, in) is det.
|
|
:- mode test2(out, out) is det.
|
|
test2(_::in, _::in) :-
|
|
puts("test2(in, in)").
|
|
test2(_::in, 0::out) :-
|
|
puts("test2(in, out)").
|
|
test2(0::out, _::in) :-
|
|
puts("test2(out, in)").
|
|
test2(0::out, 0::out) :-
|
|
puts("test2(out, out)").
|
|
|
|
:- pred puts(string::in) is det.
|
|
:- pragma c_code(puts(S::in), [will_not_call_mercury], "puts(S)").
|
|
puts(_).
|