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