blob: 55b393e125ce6f7a0a5574a90b9fa02d50453886 [file] [log] [blame]
public class Subject {
private int myInt;
private int t;
public void wp() {
myInt += t;
}
void foo() {
wp();
wp();
}
}