mirror of
https://github.com/Mercury-Language/mercury.git
synced 2026-04-19 11:23:46 +00:00
17 lines
383 B
Mathematica
17 lines
383 B
Mathematica
%---------------------------------------------------------------------------%
|
|
% vim: ts=4 sw=4 et ft=mercury
|
|
%---------------------------------------------------------------------------%
|
|
|
|
:- module unused_interface_import2.
|
|
:- interface.
|
|
|
|
:- import_module unit.
|
|
|
|
:- import_module unused_interface_import3.
|
|
|
|
:- instance tc2(unit).
|
|
|
|
:- implementation.
|
|
|
|
:- instance tc2(unit) where [].
|