summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbringert <bringert@cs.chalmers.se>2007-03-24 15:48:29 +0000
committerbringert <bringert@cs.chalmers.se>2007-03-24 15:48:29 +0000
commiteca7f691a69ef76b6c607a607c51e8081d1eb839 (patch)
tree921766ef48149f1027a2a32ba0c501c79b636fd3
parent407b4bea9c6a843d37efb2aba762b44f6fccd36b (diff)
Shrunk srg0005
-rw-r--r--test/srg/srg0005/srg0005.gf14
1 files changed, 5 insertions, 9 deletions
diff --git a/test/srg/srg0005/srg0005.gf b/test/srg/srg0005/srg0005.gf
index 19a9701ca..4d2b39440 100644
--- a/test/srg/srg0005/srg0005.gf
+++ b/test/srg/srg0005/srg0005.gf
@@ -1,13 +1,9 @@
-cat S; X; E;
+cat S; E;
-fun s : S ;
-fun es : E -> S -> S ;
-fun sx : S -> X -> S ;
-fun x : X ;
+fun es : E -> S ;
+fun sx : S -> S ;
fun e : E ;
-lin s = { s = "s" } ;
-lin es e s = { s = e.s ++ s.s } ;
-lin sx s x = { s = s.s ++ x.s } ;
-lin x = { s = "x" } ;
+lin es e = { s = e.s } ;
+lin sx s = { s = s.s ++ "x" } ;
lin e = { s = "e" } ;