From 264e7c95f1f25102aee5492aef4ba3146863f6fd Mon Sep 17 00:00:00 2001 From: Hubert Plociniczak Date: Fri, 15 Oct 2010 08:25:42 +0000 Subject: Reverting r23232. No review. --- test/files/run/t3895.check | 2 -- test/files/run/t3895.flags | 1 - test/files/run/t3895.scala | 30 ------------------------------ 3 files changed, 33 deletions(-) delete mode 100644 test/files/run/t3895.check delete mode 100644 test/files/run/t3895.flags delete mode 100644 test/files/run/t3895.scala (limited to 'test/files/run') diff --git a/test/files/run/t3895.check b/test/files/run/t3895.check deleted file mode 100644 index 3045ebf016..0000000000 --- a/test/files/run/t3895.check +++ /dev/null @@ -1,2 +0,0 @@ -17 -17 \ No newline at end of file diff --git a/test/files/run/t3895.flags b/test/files/run/t3895.flags deleted file mode 100644 index ae08446055..0000000000 --- a/test/files/run/t3895.flags +++ /dev/null @@ -1 +0,0 @@ --Xcheckinit \ No newline at end of file diff --git a/test/files/run/t3895.scala b/test/files/run/t3895.scala deleted file mode 100644 index dfc4a34a32..0000000000 --- a/test/files/run/t3895.scala +++ /dev/null @@ -1,30 +0,0 @@ -class C extends A{ - - val a = 10 - //object bb - lazy val bb = 17 - val b = 12 -} - -abstract class A{ - val a: Int - val b: Int - val c: Int = 12 -} - -class B extends A{ - - val a = 10 - //object bb - lazy val bb = 17 - val b = 12 -} - - -object Test { - def main(args: Array[String]) { - println(new B().bb) - println(new C().bb) - } -} - -- cgit v1.2.3