Update of /cvsroot/nice/Nice/testsuite/compiler/native
In directory sc8-pr-cvs1:/tmp/cvs-serv13487/testsuite/compiler/native
Modified Files:
instanceof.testsuite
Log Message:
Disable `instanceof` om primitive types (fixes #687308).
Index: instanceof.testsuite
===================================================================
RCS file: /cvsroot/nice/Nice/testsuite/compiler/native/instanceof.testsuite,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** instanceof.testsuite 24 Jul 2002 16:05:28 -0000 1.3
--- instanceof.testsuite 20 Feb 2003 15:05:15 -0000 1.4
***************
*** 27,28 ****
--- 27,31 ----
if (0 instanceof String)
throw new Error();
+
+ /// FAIL
+ boolean b = /* /// FAIL HERE */ 1 instanceof int;
|