blob: 4070a43f6caf203d4a3d8953a8c556f0e6462ab9 [file] [log] [blame]
class X {
int a;
def foo(def x) {
x++;
return x;
}
{
<selection>foo</selection>(a);
}
}
-----
class X {
int a;
def foo(def x) {
x++;
return x;
}
{
def x1 = a
x1++;
}
}