[Nice-commit] Nice/testsuite/compiler/native fields.testsuite,1.4,1.5
Brought to you by:
bonniot
From: Daniel B. <bo...@us...> - 2004-12-23 19:12:50
|
Update of /cvsroot/nice/Nice/testsuite/compiler/native In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12782/testsuite/compiler/native Modified Files: fields.testsuite Log Message: Access to private and protected fields in Java classes. Index: fields.testsuite =================================================================== RCS file: /cvsroot/nice/Nice/testsuite/compiler/native/fields.testsuite,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** fields.testsuite 20 Mar 2004 15:25:29 -0000 1.4 --- fields.testsuite 23 Dec 2004 19:12:31 -0000 1.5 *************** *** 26,27 **** --- 26,35 ---- void foo(String) {} void foo(char) {} + + /// FAIL + // Access to private field (possibly, depending on the runtime used) + let v = ""./*/// FAIL HERE*/ value; + + /// FAIL bug + // Access to protected field + let f = javax.swing.JComboBox b => b.actionCommand; |