test++
[fedora-idea.git] / testData / refactoring / inheritanceToDelegation / abstractBase / after / A.java
blob0b1132dd50bd200ebca6c71b59fd5cf35c910c1a
1 public abstract class A {
2 public final MyBase myDelegate = new MyBase();
4 protected abstract void run();
6 private class MyBase extends Base {
7 public void run() {
8 A.this.run();