aboutsummaryrefslogtreecommitdiff
path: root/tests/untried
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2014-03-17 18:06:58 +0100
committerTobias Schlatter <tobias@meisch.ch>2014-03-21 11:28:30 +0100
commit474b35ff0160c1174674757895e93818dc4f2f19 (patch)
tree59116d59f88ca74cacea68de71b58043a15ee03d /tests/untried
parent0a1ec31c2a17c5dd0e6bd363979cbf17a8860616 (diff)
downloaddotty-474b35ff0160c1174674757895e93818dc4f2f19.tar.gz
dotty-474b35ff0160c1174674757895e93818dc4f2f19.tar.bz2
dotty-474b35ff0160c1174674757895e93818dc4f2f19.zip
Fix of t1123 - Unit discarding
Need to do unit discarding also in selection prototypes.
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
-}