aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs150/pr95992.aj
blob: fb60cdb9eb864f0374ebe1f642aef79fe088de75 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
interface Base<T> {
    static interface Inner {
    }
}
class Test<T extends Test.InnerTest> implements Base<T> {
    static class InnerTest implements Inner {
    }
}

aspect ForceWeaverToUnpackAllTypes {
	
	before() : staticinitialization(*) && !within(ForceWeaverToUnpackAllTypes) {}
	
}