public class Test {
  public int foo(int y) {
    // This is a new comment
    if (y > 10) {
      return y;
    } else {
      return y * 10;
    }
  }

  public int bar(int x) {
    if (x < 10) {
      return x;
    } else {
      return x / 10;
    }
  }
}
