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