mirror of
https://github.com/Mercury-Language/mercury.git
synced 2026-04-15 17:33:38 +00:00
tests/accumulator/*.m:
tests/analysis_*/*.m:
tests/benchmarks*/*.m:
tests/debugger*/*.{m,exp,inp}:
tests/declarative_debugger*/*.{m,exp,inp}:
tests/dppd*/*.m:
tests/exceptions*/*.m:
tests/general*/*.m:
tests/grade_subdirs*/*.m:
tests/hard_coded*/*.m:
Make these tests use four-space indentation, and ensure that
each module is imported on its own line. (I intend to use the latter
to figure out which subdirectories' tests can be executed in parallel.)
These changes usually move code to different lines. For the debugger tests,
specify the new line numbers in .inp files and expect them in .exp files.
51 lines
1.2 KiB
Mathematica
51 lines
1.2 KiB
Mathematica
%---------------------------------------------------------------------------%
|
|
% vim: ts=4 sw=4 et ft=mercury
|
|
%---------------------------------------------------------------------------%
|
|
%
|
|
% mmc --optimize-constructor-last-call lco_bug
|
|
% Uncaught Mercury exception:
|
|
% Software Error: map.lookup: key not found
|
|
% Key Type: term.var(parse_tree.prog_data.prog_var_type)
|
|
% Key Value: var(2)
|
|
% Value Type: ll_backend.var_locn.var_state
|
|
|
|
:- module bug103.
|
|
:- interface.
|
|
|
|
:- import_module io.
|
|
|
|
:- pred main(io::di, io::uo) is det.
|
|
|
|
%---------------------------------------------------------------------------%
|
|
%---------------------------------------------------------------------------%
|
|
|
|
:- implementation.
|
|
|
|
:- import_module bool.
|
|
:- import_module list.
|
|
|
|
%---------------------------------------------------------------------------%
|
|
|
|
:- type foo
|
|
---> nil
|
|
; cons(int, foo).
|
|
|
|
main(!IO) :-
|
|
mk([yes, yes, no], _, Foo),
|
|
io.write(Foo, !IO),
|
|
io.nl(!IO).
|
|
|
|
:- pred mk(list(bool)::in, int::out, foo::out) is det.
|
|
|
|
mk([], -1, nil).
|
|
mk([H | T], N, R) :-
|
|
(
|
|
H = yes,
|
|
mk(T, N, RT),
|
|
R = cons(N, RT)
|
|
;
|
|
H = no,
|
|
N = 42,
|
|
R = nil
|
|
).
|