aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs154/pr175806/A.java
blob: 562276c39fbed4049ff5a65f77f651043c246b2f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
public class A {

  public static void main(String []argv) {
    int i = 5;
    try {
      String s = "3";
      System.out.println(s);
    } catch (Exception e) {
      System.out.println(i);
    }
  }
}