[Nice-commit] Nice/testsuite/compiler/classes fields.testsuite,1.11,1.12
Brought to you by:
bonniot
From: <ar...@us...> - 2003-10-05 19:49:01
|
Update of /cvsroot/nice/Nice/testsuite/compiler/classes In directory sc8-pr-cvs1:/tmp/cvs-serv13815/F:/nice/testsuite/compiler/classes Modified Files: fields.testsuite Log Message: Testcase for bug in accessing final static field of an interface. Index: fields.testsuite =================================================================== RCS file: /cvsroot/nice/Nice/testsuite/compiler/classes/fields.testsuite,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** fields.testsuite 31 Jul 2003 18:45:35 -0000 1.11 --- fields.testsuite 5 Oct 2003 19:48:55 -0000 1.12 *************** *** 116,117 **** --- 116,123 ---- class A { final int x = 1; } int f(A a) = a.x++; + + /// PASS bug + // accessing a final static field of an interface implemented by ObjectInputStream + int x = ObjectInputStream.TC_NULL; + /// Toplevel + import java.io.*; |