mirror of
https://github.com/Mercury-Language/mercury.git
synced 2026-04-26 23:04:15 +00:00
14 lines
346 B
Mathematica
14 lines
346 B
Mathematica
%---------------------------------------------------------------------------%
|
|
% vim: ts=4 sw=4 et ft=mercury
|
|
%---------------------------------------------------------------------------%
|
|
|
|
:- module duplicate_instance_helper_1.
|
|
:- interface.
|
|
|
|
:- typeclass foo(T) where [].
|
|
:- instance foo(int).
|
|
|
|
:- implementation.
|
|
|
|
:- instance foo(int) where [].
|