Files
mercury/tests/submodules/g12_fe_bug.m
Zoltan Somogyi eb6617c175 Rename X's aux modules as X_helper_N in submodules.
tests/submodules/*.m:
    Rename modules as mentioned above.

    Indent nested submodules to make them stand out.

    Group foreign_procs by what predicate they implement, not by
    their implementation language.

tests/submodules/*.m:
tests/submodules/*.err_exp:
tests/submodules/Mmakefile:
tests/submodules/Mercury.options:
    Update all references to the moved modules.
2023-06-19 22:16:36 +02:00

24 lines
665 B
Mathematica

%---------------------------------------------------------------------------%
% vim: ts=4 sw=4 et ft=mercury
%---------------------------------------------------------------------------%
%
% Compilation of this program with rotd-2011-09-04 and before resulted
% in there being an erroneous error message about multiple foreign_enum
% pragmas being emitted when generating the .c file for the generic_search
% sub-module.
:- module g12_fe_bug.
:- interface.
:- import_module io.
:- include_module g12_fe_bug_helper_1.
:- include_module g12_fe_bug_helper_2.
:- pred main(io::di, io::uo) is det.
:- implementation.
main(!IO) :-
io.write_string("Ok\n", !IO).