blob: fa439549a388b4c8d313d5fa4fafdae8e87fb8cf [file] [log] [blame]
class X {
def foo(def x) {
x++;
return x;
}
{
int x = 6, y = 3;
return foo(foo(x) + <selection>foo</selection>(y))
}
}
-----
class X {
{
int x = 6, y = 3;
y++
x++
def x1 = x + y
x1++
return x1
}
}