blob: 65c9799b2ce639f164a8a086b067ab92f7839769 [file] [log] [blame]
class S {
def r() {
Closure sin = {x -> Math.sin(x)}
10.times {
x -> sin x
}
}
}
<begin>"hhh"<end>
-----
class S {
def r() {
Closure sin = {x -> Math.sin(x)}
10.times {
x -> sin x
}
}
}
<caret>testMethod()
private String testMethod() {
return "hhh"
}