[Nice-commit] Nice/testsuite/compiler/native instanceof.testsuite,1.3,1.4
Brought to you by:
bonniot
From: <bo...@us...> - 2003-02-20 15:05:24
|
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; |