blob: c31fb7e5a764bd614a2cbe15a4ce02e790dda90c [file] [log] [blame]
public class Subject {
private int myInt;
private int t;
public void wp(int <caret>p) {
myInt += p;
}
void foo(Subject s) {
wp(s.t);
wp(t);
}
}