summaryrefslogtreecommitdiff
path: root/test/files/neg/bug1241.scala.disabled
diff options
context:
space:
mode:
authorAntonio Cunei <antonio.cunei@epfl.ch>2009-06-02 12:05:28 +0000
committerAntonio Cunei <antonio.cunei@epfl.ch>2009-06-02 12:05:28 +0000
commitda8b3a4b9d5010d20daeac76aeb13560035b63cb (patch)
treee5b202d7c7cbe9e6d1277b29b84866917d3bc07f /test/files/neg/bug1241.scala.disabled
parentf5f18249a168676c478e020188e865d3548a9aa7 (diff)
downloadscala-da8b3a4b9d5010d20daeac76aeb13560035b63cb.tar.gz
scala-da8b3a4b9d5010d20daeac76aeb13560035b63cb.tar.bz2
scala-da8b3a4b9d5010d20daeac76aeb13560035b63cb.zip
reverted 17960, restored bug1241 w/ new check file
Diffstat (limited to 'test/files/neg/bug1241.scala.disabled')
-rw-r--r--test/files/neg/bug1241.scala.disabled8
1 files changed, 0 insertions, 8 deletions
diff --git a/test/files/neg/bug1241.scala.disabled b/test/files/neg/bug1241.scala.disabled
deleted file mode 100644
index 68a2c963c4..0000000000
--- a/test/files/neg/bug1241.scala.disabled
+++ /dev/null
@@ -1,8 +0,0 @@
-object test extends Application {
- // more..
- type T = { def hello() }
- //val x4 = new AnyRef { def hello() { println("4") } } // ok!
- val x4 = new T { def hello() { println("4") } } // error!
- x4.hello()
- // more..
-}