summaryrefslogtreecommitdiff
path: root/test/pending/run
diff options
context:
space:
mode:
authorJohannes Rudolph <johannes_rudolph@gmx.de>2012-07-22 11:46:02 +0200
committerPaul Phillips <paulp@improving.org>2012-07-24 20:51:39 -0700
commitcf709c2dd23b7f1f659e52bcb8beb098c5d02d50 (patch)
tree97a1bc815852d2b2dc1a3209142267a5645f8114 /test/pending/run
parentc8bdf199476fdd113d28b23793b5e871390cf825 (diff)
downloadscala-cf709c2dd23b7f1f659e52bcb8beb098c5d02d50.tar.gz
scala-cf709c2dd23b7f1f659e52bcb8beb098c5d02d50.tar.bz2
scala-cf709c2dd23b7f1f659e52bcb8beb098c5d02d50.zip
SI-4560 - improved test
Added all the known cases of failing self-types. Added tests for symbol access (SI-4601) as well which should now be fixed for all of the same cases as well.
Diffstat (limited to 'test/pending/run')
-rw-r--r--test/pending/run/t4560.scala9
1 files changed, 0 insertions, 9 deletions
diff --git a/test/pending/run/t4560.scala b/test/pending/run/t4560.scala
deleted file mode 100644
index fe62136319..0000000000
--- a/test/pending/run/t4560.scala
+++ /dev/null
@@ -1,9 +0,0 @@
-trait B {
- this: Test.type =>
-
- def y = new { def f() = () }
- def fail() = y.f()
-}
-object Test extends B {
- def main(args: Array[String]): Unit = fail()
-} \ No newline at end of file