[Nice-commit] Nice/testsuite/compiler/overloading fields.testsuite,1.3,1.4
Brought to you by:
bonniot
From: Artem Gr K. <ar...@us...> - 2005-04-01 15:08:35
|
Update of /cvsroot/nice/Nice/testsuite/compiler/overloading In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9544/testsuite/compiler/overloading Modified Files: fields.testsuite Log Message: Overloading bug found. Index: fields.testsuite =================================================================== RCS file: /cvsroot/nice/Nice/testsuite/compiler/overloading/fields.testsuite,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** fields.testsuite 12 Mar 2005 15:06:13 -0000 1.3 --- fields.testsuite 1 Apr 2005 15:07:54 -0000 1.4 *************** *** 1,4 **** --- 1,14 ---- /// COMMENT Special handling of class fields during overloading resolution. + /// PASS bug + /// Toplevel + class Bar { + Map<String,String> db; + } + class Foo { + Map<String,String> db; + Object dbLock() = db; + } + /// PASS let i = x; |