svn: r2165

This commit is contained in:
Kathy Gray 2006-02-07 21:05:37 +00:00
parent ea0239841a
commit 78581eef66

View File

@ -302,6 +302,15 @@
;;Execute tests with errors
(execute-test
"class Foo {
Foo() {}
boolean compare(int x, int y, int z) {
return (x == y) (y == z);
}
}"
'intermediate #t "Parse error, two expressions (one parened) without an operator")
(execute-test
"abstract class F{ abstract int f(); }
class G extends F { }"