org.aspectj/tests/new/FalseThrowsCE.java

16 lines
457 B
Java
Raw Normal View History

2002-12-16 19:51:06 +01:00
import org.aspectj.testing.Tester;
/**
* @testTarget compilerErrors.false.exceptions Throwable treated as checked, false compiler error
*/
public class FalseThrowsCE {
public static void main(String[] args) {
try {
System.getProperty("").toString(); // potential NPE, SecurityException
} catch (Throwable e) { // (false) CE: Throwable never thrown
String s = "got " + e;
}
Tester.check(true,"ok - compiled without error");
}
}