aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/pos/lambdalift1.scala
blob: 7353c32c6399b132898f3b0023ce287da9223cd9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import scala._;

object test {

  def f[a <: java.lang.Object](x: a) = {
    def print() = java.lang.System.out.println(x);
    class A() {
      def g() = {
    class B() {
      def h() = print()
    }
    new B().h()
      }
    }
    new A().g()
  }
}