blob: 45022ec17d0caae1ab610fbf83ade17eff075152 [file] [log] [blame]
class A {
int myNewField;
}
class B {
int method(A a) {
return A.myNewField;
}
}