aboutsummaryrefslogtreecommitdiff
path: root/tests/disabled/macro/run/t7008/JavaClassWithCheckedExceptions_1.java
blob: dda21283025747e03895390853a34fcc3d1aafd9 (plain) (blame)
1
2
3
4
5
6
7
class JavaClassWithCheckedExceptions_1<E1 extends Exception>  {
  public JavaClassWithCheckedExceptions_1() throws NullPointerException {}

  public void bar() throws E1 {}
  public void baz(int x) throws IllegalStateException {}
  public <E2 extends Exception> void foo() throws E2 {}
}