Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

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. }