[Nice-commit] Nice/testsuite/compiler/methods ambiguity.testsuite,1.6,1.7
Brought to you by:
bonniot
From: Daniel B. <bo...@us...> - 2005-03-24 21:58:21
|
Update of /cvsroot/nice/Nice/testsuite/compiler/methods In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18247/testsuite/compiler/methods Modified Files: ambiguity.testsuite Log Message: Temporarily disable the secondary link test optimization, as it is currently overly optimistic (it lets some ambiguities unnoticed). Index: ambiguity.testsuite =================================================================== RCS file: /cvsroot/nice/Nice/testsuite/compiler/methods/ambiguity.testsuite,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** ambiguity.testsuite 1 Mar 2005 18:56:21 -0000 1.6 --- ambiguity.testsuite 24 Mar 2005 21:58:11 -0000 1.7 *************** *** 30,32 **** foo(B x, B y) {} foo(B x, B y) {} ! \ No newline at end of file --- 30,47 ---- foo(B x, B y) {} foo(B x, B y) {} ! ! /// FAIL ! /// Toplevel ! interface top { ! int /*/// FAIL HERE */ diamond() = 1; ! } ! ! interface left implements top { ! diamond() = 2; ! } ! interface right implements top { ! diamond() = 3; ! } ! ! class bottom implements left, right {} ! // ambiguity for diamond(bottom) |