summaryrefslogtreecommitdiff
path: root/test/files/pos/t1123.scala
blob: a7b009cbbe16aaa5360ba2398a5b6b1495bbd2ba (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    
}