blob: 731a4bc6c472abb467f669b72c281d13a91b79af [file] [log] [blame]
package test3;
public class InsertAfter {
int k;
public InsertAfter() {
k = 3;
}
public int test() {
foo();
return k;
}
public void foo() {
++k;
}
}