You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

pr95992.aj 291B

1234567891011121314
  1. interface Base<T> {
  2. static interface Inner {
  3. }
  4. }
  5. class Test<T extends Test.InnerTest> implements Base<T> {
  6. static class InnerTest implements Inner {
  7. }
  8. }
  9. aspect ForceWeaverToUnpackAllTypes {
  10. before() : staticinitialization(*) && !within(ForceWeaverToUnpackAllTypes) {}
  11. }