aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/t318.scala
blob: dbe0e0528cbf982117f2979015b78beced82b445 (plain) (blame)
1
2
3
4
5
6
7
8
9
object Test {
  def fun: Int = {
    object o {
      def a: Int = 1;
      class C { def b: Int =  a; }
    }
    0
  }
}