From 1dbc00126bf0e660b0286ac247271549158bcb65 Mon Sep 17 00:00:00 2001 From: paltherr Date: Mon, 19 Jan 2004 09:25:20 +0000 Subject: - Moved test/pos test/neg and test/new into tes... - Moved test/pos test/neg and test/new into test/files --- test/neg/bug145.scala | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 test/neg/bug145.scala (limited to 'test/neg/bug145.scala') diff --git a/test/neg/bug145.scala b/test/neg/bug145.scala deleted file mode 100644 index da66ddba05..0000000000 --- a/test/neg/bug145.scala +++ /dev/null @@ -1,17 +0,0 @@ -class B[T] { - def foo(x: T): Int = 1; -} -trait J[T] { - def foo(x: T): Int; -} -trait I[T] extends B[T] with J[T] { - abstract override def foo(x: T): Int = super[J].foo(x) + 1; -} -class C extends B[Int] { - override def foo(x: Int): Int = x; -} -class D extends C with I[Int]; -object T with Application { - System.out.println((new D).foo(3)); -} - -- cgit v1.2.3