blob: b989d99292077835573b2bd2c03f0dec7764d6b0 [file] [log] [blame]
// A test that throwing and catching exceptions doesn't cause false positives.
class SimpleException {
void thrower() throws Exception {
throw new RuntimeException("some exception");
}
void test() {
try {
thrower();
} catch (Exception e) {
e.printStackTrace();
}
}
}