1
0
forked from GitHub/gf-core

Added srg0003: test case for indirect cycles.

This commit is contained in:
bringert
2007-03-23 18:13:38 +00:00
parent ccb76f5da0
commit 5dc92edbb0

View File

@@ -0,0 +1,11 @@
-- a grammar with an indirect cycle
cat S; G;
fun f : S ;
fun fg : G -> S ;
fun gf : S -> G ;
lin f = { s = "f" } ;
lin fg x = x;
lin gf x = x;