mirror of
https://github.com/Mercury-Language/mercury.git
synced 2026-04-19 03:13:40 +00:00
19 lines
433 B
Mathematica
19 lines
433 B
Mathematica
%---------------------------------------------------------------------------%
|
|
% vim: ts=4 sw=4 et ft=mercury
|
|
%---------------------------------------------------------------------------%
|
|
%
|
|
% Regression test to ensure that terms are properly quoted in the intermodule
|
|
% .opt file.
|
|
%
|
|
|
|
:- module intermod_quote.
|
|
:- interface.
|
|
|
|
:- type foo. % Not used.
|
|
|
|
:- implementation.
|
|
:- import_module intermod_quote2.
|
|
|
|
:- type foo
|
|
---> foo.
|