blob: 9d2e6c9d85949c9178edfd67da177bbd2bbf7878 [file] [log] [blame]
// "Create Constructor" "true"
class Test {
void foo() throws Ex1 {}
void bar() throws Ex2 {}
public void t() {
try {
foo();
bar();
}
catch (Ex1 | Ex2 e) {
new A(<caret>e);
}
}
}
class A {
}
class Ex1 extends Exception {}
class Ex2 extends Exception {}