summaryrefslogtreecommitdiff
path: root/test/files/pos/lambdalift1.scala
blob: e4c7b3a801a6f11c74e76d92f1ffb383fd45e970 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import scala._;

module 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()
  }
}