public class Test {
  public int f00(int x) {
    int y = x++;
    return y;
  }

  public int f01(int z) {
    int w = z++;
    return w;
  }
}
