[Nice-commit] Nice/testsuite/compiler/expressions/arrays typing.testsuite,1.3,1.4
Brought to you by:
bonniot
From: Daniel B. <bo...@us...> - 2004-07-21 20:26:25
|
Update of /cvsroot/nice/Nice/testsuite/compiler/expressions/arrays In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20768/testsuite/compiler/expressions/arrays Modified Files: typing.testsuite Log Message: Handle creation of arrays with a parameterized type component (which was broken by the new handling of type variables in 0.9.8). Index: typing.testsuite =================================================================== RCS file: /cvsroot/nice/Nice/testsuite/compiler/expressions/arrays/typing.testsuite,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** typing.testsuite 15 Apr 2004 14:42:00 -0000 1.3 --- typing.testsuite 21 Jul 2004 20:26:14 -0000 1.4 *************** *** 17,18 **** --- 17,21 ---- <T> ?T[] foo(!T x) = new T[1]; <T> ?T[] foo2(int length) = new T[length]; + + /// PASS + ?List<String>[] myArray = new List[10]; |