blob: 971d12a2950e61a4f419a13ff4533c76eb7296f9 [file] [log] [blame]
class X {
def fo<caret>o = { def it = null -> print it }
def bar() {
print this.foo
}
}
final X x = new X()
print x.foo
x.foo(2)