Files

8 lines
118 B
Plaintext

public abstract class A {
void method (Integer x) {
methodImpl();
}
private void methodImpl() {}
}