Files
mercury/tests/valid/intermod_nested.m
Simon Taylor 6f3d876533 Fix a bug in inter-mdule optimization reported by Michael Day.
Estimated hours taken: 2
Branches: main, release

Fix a bug in inter-mdule optimization reported by Michael Day.

compiler/intermod.m:
	Write declarations for `exported_to_submodules' predicates
	and functions to the `.opt' file.

tests/valid/Mmakefile:
tests/valid/Mercury.options:
tests/valid/intermod_nested{,2}.m:
	Test case.
2003-02-17 06:07:15 +00:00

16 lines
187 B
Mathematica

:- module intermod_nested.
:- interface.
:- import_module io.
:- pred main(io, io).
:- mode main(di, uo) is det.
:- implementation.
:- import_module intermod_nested2.
main --> [].