blob: 39908e0b92e26066e43fd340727f7d0db562d98e [file] [log] [blame]
class D extends E {
protected void doSomething() throws Exception {
throw new Exception();
}
}
public abstract class E {
protected abstract void doSomething() throws Exception;
}