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

WithincodeNPE01.java 319B

12345678910111213
  1. aspect B {
  2. public A.new(String s) {this(); }
  3. public void A.foo() { int i = 1; }
  4. declare warning: withincode(void main(..)): "X"; // Would NPE without the fix for PR67774
  5. declare warning: withincode(A.new(String)): "In String ctor";
  6. }
  7. class A {
  8. private final static String name = A.class.getName();
  9. }