Files
mercury/tests/valid_seq/tc_map_lookup.m
2020-11-15 08:02:47 +11:00

22 lines
613 B
Mathematica

%---------------------------------------------------------------------------%
% vim: ts=4 sw=4 et ft=mercury
%---------------------------------------------------------------------------%
%
% Mercury rotd-2006-11-04 and before could not compile this module because
% the .int file for tc_map_lookup_2 did not contain the (implementation)
% imports required by the typeclass constraints on the typeclass tc/1.
%
:- module tc_map_lookup.
:- interface.
:- import_module io.
:- pred main(io::di, io::uo) is det.
:- implementation.
:- import_module tc_map_lookup_2.
main(!IO) :-
io.write_string("hi.\n", !IO).