aboutsummaryrefslogtreecommitdiffstats
path: root/tests/incremental/model/weaving2/src/primary/Alpha.java
blob: ab7e82c162120db8f46c8ef9c9877a60849e63af (plain)
1
2
3
4
5
6
7
8
9
10
11
package primary;

public class Alpha {
  public static void main(String[]argv) {
    try {
      System.err.println("aaa");
    } catch (Throwable t) {
      System.err.println("Caught:"+t);
    }
  }
}