--- /dev/null
+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) {}
+
+}
\ No newline at end of file
runTest("switch on enum inside ITD method");
}
+ public void testInnerTypeOfGeneric() {
+ runTest("inner type of generic interface reference from parameterized type");
+ }
+
// helper methods.....
public SyntheticRepository createRepos(File cpentry) {
</stdout>
</run>
</ajc-test>
-
+
+ <ajc-test dir="bugs150" pr="95992" title="inner type of generic interface reference from parameterized type">
+ <compile files="pr95992.aj" options="-1.5"/>
+ </ajc-test>
+
<!-- ============================================================================ -->
<!-- ============================================================================ -->