mirror of
https://github.com/Mercury-Language/mercury.git
synced 2026-04-18 02:43:40 +00:00
23 lines
546 B
Mathematica
23 lines
546 B
Mathematica
%---------------------------------------------------------------------------%
|
|
% vim: ts=4 sw=4 et ft=mercury
|
|
%---------------------------------------------------------------------------%
|
|
%
|
|
% Regression test for resolving overloading of higher-order terms
|
|
% exported using inter-module optimization.
|
|
% This is also a regression test to check that local modes are put
|
|
% in the .opt files.
|
|
%
|
|
|
|
:- module intermod_lambda.
|
|
|
|
:- interface.
|
|
|
|
:- type foo. % not used
|
|
|
|
:- implementation.
|
|
|
|
:- type foo
|
|
---> foo.
|
|
|
|
:- import_module intermod_lambda2.
|