aboutsummaryrefslogtreecommitdiff
path: root/tests/untried
diff options
context:
space:
mode:
Diffstat (limited to 'tests/untried')
-rw-r--r--tests/untried/pos/t1123.scala11
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/untried/pos/t1123.scala b/tests/untried/pos/t1123.scala
deleted file mode 100644
index 3812fa3eb..000000000
--- a/tests/untried/pos/t1123.scala
+++ /dev/null
@@ -1,11 +0,0 @@
-
-package test;
-object Test {
- class Editor {
- private object extraListener {
- def h : AnyRef = extraListener
- }
- def f = extraListener.h
- }
- def main(args : Array[String]) : Unit = (new Editor).f
-}