Files
mercury/tests/valid_seq/intermod_nested2.m
Julien Fischer f3a34e4651 Replace uses of __ as a module qualifier.
samples/muz.zbstract.m:
tests/*/*.m:
    As above.
2022-04-14 20:25:10 +10:00

27 lines
522 B
Mathematica

%---------------------------------------------------------------------------%
% vim: ts=4 sw=4 et ft=mercury
%---------------------------------------------------------------------------%
:- module intermod_nested2.
:- interface.
:- module intermod_nested2.bar.
:- interface.
:- type bar
---> bar.
:- end_module intermod_nested2.bar.
:- implementation.
:- import_module int.
% Check that `exported_to_submodules' functions are declared
% in the `.opt' file.
:- func foo = int.
foo = 1.