blob: 3d34ee1f304a039ea2f7170ea215823c835868ba [file] [log] [blame]
public class PR21045
{
class InnerBase {
InnerBase() throws Exception, NullPointerException {}
}
void method() {
try {
InnerBase obj = new InnerBase() {};
} catch (Exception e) {}
}
}