您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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