org.aspectj/tests/bugs/Source14Assert.java

13 wiersze
235 B
Java

public class Source14Assert {
private void method1() {
try {
invoke();
} catch (Throwable throwable) {
assert false : throwable;
}
}
private void invoke() {}
public static void main(String[] args) {}
}