blob: bd19a97f6cd76f4bd80409fe9c4968457fd008e2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
public class Source14Assert {
private void method1() {
try {
invoke();
} catch (Throwable throwable) {
assert false : throwable;
}
}
private void invoke() {}
public static void main(String[] args) {}
}
|