Files
mercury/tests/valid/fundeps.m
Zoltan Somogyi c03b11ca48 Update the style of more test cases.
And updated expected outputs for changed line numbers.
2021-07-27 19:29:21 +10:00

12 lines
325 B
Mathematica

%---------------------------------------------------------------------------%
% vim: ts=4 sw=4 et ft=mercury
%---------------------------------------------------------------------------%
:- module fundeps.
:- interface.
:- typeclass foo(A, B) <= (A -> B) where [].
:- type bar
---> some [A, B] bar(A) => foo(A, B).