diff options
| author | bringert <bringert@cs.chalmers.se> | 2007-03-24 15:48:29 +0000 |
|---|---|---|
| committer | bringert <bringert@cs.chalmers.se> | 2007-03-24 15:48:29 +0000 |
| commit | eca7f691a69ef76b6c607a607c51e8081d1eb839 (patch) | |
| tree | 921766ef48149f1027a2a32ba0c501c79b636fd3 | |
| parent | 407b4bea9c6a843d37efb2aba762b44f6fccd36b (diff) | |
Shrunk srg0005
| -rw-r--r-- | test/srg/srg0005/srg0005.gf | 14 |
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" } ; |
