Files
gf-core/grammars/ljung/thesis/ErasingAbs.gf
2005-08-08 08:01:10 +00:00

22 lines
162 B
Plaintext

-- the example 4.1 from Ljunglöf (2004, page 82)
abstract ErasingAbs = {
cat S; A; B; C;
fun
f : A -> S;
g : A -> B -> C -> A;
a : A;
b : B;
c : C;
}