aboutsummaryrefslogtreecommitdiffstats
path: root/tests/new/InnerHell.java
blob: 25ed61aa03985d5089de2126d83424feae08ab76 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import org.aspectj.testing.Tester;

import javax.swing.*;

public class InnerHell {
    public static void main(String[] args) {
        AbstractButton b = new MyButton();
    }
}

class MyButton extends AbstractButton {
    class AccessibleMyButton extends AccessibleJComponent { 
    }
}