[Nice-commit] Nice/testsuite/compiler/classes fields.testsuite,1.8,1.9
Brought to you by:
bonniot
|
From: <ar...@us...> - 2003-02-23 11:04:25
|
Update of /cvsroot/nice/Nice/testsuite/compiler/classes
In directory sc8-pr-cvs1:/tmp/cvs-serv10233/F:/nice/testsuite/compiler/classes
Modified Files:
fields.testsuite
Log Message:
Interfaces cannot have fields.
Index: fields.testsuite
===================================================================
RCS file: /cvsroot/nice/Nice/testsuite/compiler/classes/fields.testsuite,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** fields.testsuite 20 Sep 2002 08:23:25 -0000 1.8
--- fields.testsuite 23 Feb 2003 11:04:22 -0000 1.9
***************
*** 87,88 ****
--- 87,95 ----
() -> String f = () => "";
}
+
+ /// FAIL
+ /// Toplevel
+ interface I
+ {
+ String s;
+ }
|