summaryrefslogtreecommitdiff
path: root/test/files/run/t4047.scala
diff options
context:
space:
mode:
authorHubert Plociniczak <hubert.plociniczak@epfl.ch>2011-01-08 20:57:45 +0000
committerHubert Plociniczak <hubert.plociniczak@epfl.ch>2011-01-08 20:57:45 +0000
commit18b563879c0cac2727e417762ba2efdee4acfcfb (patch)
treed00f17a6f7891ef71524b7f6b00f3d6cbd364551 /test/files/run/t4047.scala
parent8752d5888450f1e188203821fe3748216e1e902f (diff)
downloadscala-18b563879c0cac2727e417762ba2efdee4acfcfb.tar.gz
scala-18b563879c0cac2727e417762ba2efdee4acfcfb.tar.bz2
scala-18b563879c0cac2727e417762ba2efdee4acfcfb.zip
Reverting fix for #4047 until I figure out why ...
Reverting fix for #4047 until I figure out why it is failing on chara and not on my machine. No review.
Diffstat (limited to 'test/files/run/t4047.scala')
-rw-r--r--test/files/run/t4047.scala34
1 files changed, 0 insertions, 34 deletions
diff --git a/test/files/run/t4047.scala b/test/files/run/t4047.scala
deleted file mode 100644
index cd42a8b4df..0000000000
--- a/test/files/run/t4047.scala
+++ /dev/null
@@ -1,34 +0,0 @@
-trait Foo[T] { val foo: T}
-
-class A extends Foo[Unit]{
- lazy val foo = println("Unit: called A.foo")
-}
-
-class B extends Foo[Unit]{
- val foo = println("Unit: called B.foo")
-}
-
-trait Bar[T] { def foo: T}
-
-class C extends Bar[Unit]{
- lazy val foo = println("Unit: called C.foo")
-}
-
-class D extends Bar[Unit]{
- def foo = println("Unit: called D.foo")
-}
-
-object Test extends Application {
- val a: Foo[Unit] = new A
- a.foo
- a.foo
- val b: Foo[Unit] = new B
- b.foo
- b.foo
- val c: Bar[Unit] = new C
- c.foo
- c.foo
- val d: Bar[Unit] = new D
- d.foo
- d.foo
-}