summaryrefslogtreecommitdiff
path: root/test-nsc/files/pos/bug318.scala
blob: 1b9fa4a4b3fa503061fbba562f65b9df6b9f4097 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
// $Id$

object Test {
  def fun: Int = {
    object o {
      def a: Int = 1;
      class C { def b: Int =  a; }
    }
    0
  }
}