blob: 64b1f981077da214c8b29f6ea705b4890fe8577a [file] [log] [blame]
// Test case for Issue 396:
// https://github.com/typetools/checker-framework/issues/396
public class Issue396 {
void b() {
try {
} catch (LinkageError | AssertionError e) {
throw e;
}
}
}