diff options
Diffstat (limited to 'tests/bugs150/pr95992.aj')
-rw-r--r-- | tests/bugs150/pr95992.aj | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/bugs150/pr95992.aj b/tests/bugs150/pr95992.aj new file mode 100644 index 000000000..fb60cdb9e --- /dev/null +++ b/tests/bugs150/pr95992.aj @@ -0,0 +1,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) {} + +}
\ No newline at end of file |