summaryrefslogtreecommitdiff
path: root/test/files
diff options
context:
space:
mode:
authorHubert Plociniczak <hubert.plociniczak@epfl.ch>2010-10-15 08:25:42 +0000
committerHubert Plociniczak <hubert.plociniczak@epfl.ch>2010-10-15 08:25:42 +0000
commit264e7c95f1f25102aee5492aef4ba3146863f6fd (patch)
tree2579d64b848c707575d031210414b23ab1befaed /test/files
parent3332d2052666f868092deea2b34f0b7b1b7fb932 (diff)
downloadscala-264e7c95f1f25102aee5492aef4ba3146863f6fd.tar.gz
scala-264e7c95f1f25102aee5492aef4ba3146863f6fd.tar.bz2
scala-264e7c95f1f25102aee5492aef4ba3146863f6fd.zip
Reverting r23232. No review.
Diffstat (limited to 'test/files')
-rw-r--r--test/files/run/t3895.check2
-rw-r--r--test/files/run/t3895.flags1
-rw-r--r--test/files/run/t3895.scala30
3 files changed, 0 insertions, 33 deletions
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)
- }
-}
-