blob: a5da7b10f22efc1ac04e241d95189773ab22c23f [file] [log] [blame]
class A {
private final int aField = 1;
class B {
int method() {
int <selection>i</selection> = 2;
return aField + i;
}
}
}