Files
mercury/tests/invalid_manual/gh118.m
Zoltan Somogyi d9046a19d2 Add a test case for github issue #118.
tests/invalid_manual/gh118.err_exp:
tests/invalid_manual/gh118.gh118_helper.m:
tests/invalid_manual/gh118.m:
    As above. The invalid_manual directory is a new test directory.
    Its tests are not executed by tools/bootcheck.

tests/invalid_manual/Mmakefile:
    Add a make rule for executing the test.

tests/invalid_manual/Mercury.options:
    Add this options file (currently empty).

compiler/det_report.m:
    Redirect comments to the actual location of the test case.
2023-03-18 21:33:54 +11:00

13 lines
212 B
Mathematica

:- module gh118.
:- interface.
:- include_module gh118_helper.
:- import_module io.
:- pred main(io::di, io::uo) is cc_multi.
:- implementation.
:- import_module gh118.gh118_helper.
main(!IO) :-
bar(!IO).