Files
mercury/tests/valid/intermod_lambda.m
Fergus Henderson 2bf6b45696 Another fix to make things work with my change to
Estimated hours taken: 0.1

Another fix to make things work with my change to
ensure that the declarations and definitions for data constants
specify the same linkage (extern or static).

tests/valid/intermod_lambda.m:
	Add definitions for types which were declared but not defined.
1998-09-04 10:12:42 +00:00

16 lines
344 B
Mathematica

% 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.