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