Update of /cvsroot/nice/Nice/testsuite/compiler/typing
In directory sc8-pr-cvs1:/tmp/cvs-serv29947/testsuite/compiler/typing
Modified Files:
instanceof.testsuite
Log Message:
Removed duplicate testcase.
Index: instanceof.testsuite
===================================================================
RCS file: /cvsroot/nice/Nice/testsuite/compiler/typing/instanceof.testsuite,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -d -r1.15 -r1.16
*** instanceof.testsuite 24 Nov 2003 20:49:42 -0000 1.15
--- instanceof.testsuite 25 Nov 2003 09:43:04 -0000 1.16
***************
*** 280,292 ****
/// PASS
- Vector<A> ll = new Vector();
- ll.foreach(A arg => {
- arg = new B();
- if (arg instanceof B) {
- int x = arg.life;
- }
- });
-
- /// PASS
let A a = new B();
void->void f = () => {
--- 280,283 ----
|