blob: f20fc870876faf022299212d49b31aa1e97a22c8 [file] [log] [blame]
class A {
int <caret>myField;
}
class B {
int method(A a) {
return A.myField;
}
}