blob: 55cc9001ecef078138a5ed37ae621eb8bda47ec9 [file] [log] [blame]
//file
import java.io.IOException;
class A {
void foo() {
try {
bar()
}
catch(RuntimeException | IOException e) {
e.printStackTrace(); // print stack trace
}
}
}