mirror of
https://github.com/Mercury-Language/mercury.git
synced 2026-04-18 10:53:40 +00:00
18 lines
459 B
Mathematica
18 lines
459 B
Mathematica
%---------------------------------------------------------------------------%
|
|
% vim: ts=4 sw=4 et ft=mercury
|
|
%---------------------------------------------------------------------------%
|
|
%
|
|
% Check that compiler/module_qual.m does not add a spurious
|
|
% "(the module `builtin' has not been imported)" to the end of the
|
|
% undefined type error message.
|
|
|
|
:- module builtin_int.
|
|
|
|
:- interface.
|
|
|
|
:- pred foo(builtin.ints::in) is semidet.
|
|
|
|
:- implementation.
|
|
|
|
foo(1).
|