[Nice-commit] Nice/testsuite/compiler/syntax types.testsuite,1.6,1.7
Brought to you by:
bonniot
From: Daniel B. <bo...@us...> - 2005-05-25 11:52:41
|
Update of /cvsroot/nice/Nice/testsuite/compiler/syntax In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18588/testsuite/compiler/syntax Modified Files: types.testsuite Log Message: Consistently use '?' to represent the wildcard (unknown monotype). Only accept it in the parser as a type parameter (Object can as well be used to mean "any monotype"). Index: types.testsuite =================================================================== RCS file: /cvsroot/nice/Nice/testsuite/compiler/syntax/types.testsuite,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** types.testsuite 12 Mar 2005 02:41:42 -0000 1.6 --- types.testsuite 25 May 2005 11:52:30 -0000 1.7 *************** *** 88,89 **** --- 88,93 ---- s3' = null; s3' = [ null ]; + + /// FAIL + /// Toplevel + void getValue (? /*/// FAIL HERE*/, int) {} |