summaryrefslogtreecommitdiff
path: root/test/files/pos/t1123.scala
blob: 3812fa3eb35c0bf8fcab276b7c4536da25630f5b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
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
}