summaryrefslogtreecommitdiff
path: root/test/files/neg/bug1241.scala
diff options
context:
space:
mode:
authorAntonio Cunei <antonio.cunei@epfl.ch>2009-06-02 11:12:30 +0000
committerAntonio Cunei <antonio.cunei@epfl.ch>2009-06-02 11:12:30 +0000
commitf5f18249a168676c478e020188e865d3548a9aa7 (patch)
treed994a0fdfdf67925040f193ae1dbb197c4a9e871 /test/files/neg/bug1241.scala
parenta7aeed67da977fc885f7e89ae5f52aa7dadbac24 (diff)
downloadscala-f5f18249a168676c478e020188e865d3548a9aa7.tar.gz
scala-f5f18249a168676c478e020188e865d3548a9aa7.tar.bz2
scala-f5f18249a168676c478e020188e865d3548a9aa7.zip
Reverting 17948, disabling test.
Diffstat (limited to 'test/files/neg/bug1241.scala')
-rw-r--r--test/files/neg/bug1241.scala8
1 files changed, 0 insertions, 8 deletions
diff --git a/test/files/neg/bug1241.scala b/test/files/neg/bug1241.scala
deleted file mode 100644
index 68a2c963c4..0000000000
--- a/test/files/neg/bug1241.scala
+++ /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..
-}