blob: 4a426f878a87f32ba393e58263611a36c9a7a8a9 [file] [log] [blame]
class MyDom {
static void main(String[] args) {
new Foo().foo({
print ba<ref>r
});
}
}
class Foo {
def bar = 2
def foo(Closure c) {
c.delegate = this
c.call()
}
}