added testsuite for the parser

This commit is contained in:
krasimir
2011-01-10 10:34:09 +00:00
parent 5d8d1999d8
commit 37d0200c7f
4 changed files with 37 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
concrete DummyNatCnc of DummyNat = {
lincat Nat = Str ;
lin zero = "z" ;
succ n = n ;
plus m n = m ++ n ;
}