diff options
| author | bringert <bringert@cs.chalmers.se> | 2007-03-25 16:42:52 +0000 |
|---|---|---|
| committer | bringert <bringert@cs.chalmers.se> | 2007-03-25 16:42:52 +0000 |
| commit | 90ddf726c1be01f6eefec8364f2e65f01c771392 (patch) | |
| tree | c348178b8b7a211328a79668b0bc718824bc5560 /test/srg/cyclic-indirect | |
| parent | de0ca9f533523ee0a815c5f0d06c58053c542f91 (diff) | |
Give SRG test cases human-readable names.
Diffstat (limited to 'test/srg/cyclic-indirect')
| -rw-r--r-- | test/srg/cyclic-indirect/cyclic-indirect.gf | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/test/srg/cyclic-indirect/cyclic-indirect.gf b/test/srg/cyclic-indirect/cyclic-indirect.gf new file mode 100644 index 000000000..316589cd8 --- /dev/null +++ b/test/srg/cyclic-indirect/cyclic-indirect.gf @@ -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; |
