mirror of
https://github.com/Mercury-Language/mercury.git
synced 2026-04-26 23:04:15 +00:00
tests/mmc_make/Mmakefile:
tests/mmc_make/bug489.exp:
tests/mmc_make/bug489.m:
tests/mmc_make/bug489.other.m:
tests/mmc_make/lexer.m:
Add test where a separate sub-module is stored in a source file
with a name that could be confused for a standard library module.
18 lines
424 B
Mathematica
18 lines
424 B
Mathematica
%---------------------------------------------------------------------------%
|
|
% vim: ts=4 sw=4 et ft=mercury
|
|
%---------------------------------------------------------------------------%
|
|
%
|
|
% This file is deliberately named to potentially be confused for
|
|
% a standard library module.
|
|
|
|
:- module bug489.lexer.
|
|
:- interface.
|
|
|
|
:- type token
|
|
---> tok1
|
|
; tok2.
|
|
|
|
:- implementation.
|
|
|
|
:- import_module bug489.other.
|