]> source.dussan.org Git - aspectj.git/commitdiff
added comments
authorwisberg <wisberg>
Fri, 9 Jan 2004 07:27:47 +0000 (07:27 +0000)
committerwisberg <wisberg>
Fri, 9 Jan 2004 07:27:47 +0000 (07:27 +0000)
tests/bugs/DeclaringTypeWarning.java

index d61e1fbe5277de3a329cbe648d7a6ff90a6f4d49..272404162594016930bfb1b038810f3739142a0f 100644 (file)
@@ -2,22 +2,26 @@
 class A { void run() {} }
 class B extends A {}
 aspect C {
-    before() : runB() { } // warn here
-    pointcut runB(): call(void B.run());
-    before() : call(int B.run()) {}
+    before() : runB() { } 
+    pointcut runB(): call(void B.run());  // CW 6 XLint, for each shadow (12, 14) 
+    before() : call(int B.run()) {} // pointcut not matched
 }
 public class DeclaringTypeWarning {
     public static void main(String[] args) {
         // ok with -1.4; otherwise, becomes A.run in bytecode
-        new B().run();        
+        new B().run();        // CW 12 DW
         // never works - compile-time type of reference is A, not B
         ((A) new B()).run();
     }
 }
 aspect D {
-    declare error : call(void B.run()) : // warn here
-        "This should be the only error";
+    // produces CW 12 DW only under 1.4 (correct method signature)
+    declare warning : call(void B.run()) :     // no XLint warning here (?)
+        "declare warning : call(void B.run())";
     
-    declare error : call(int B.run()) :
-        "This error should not happen";
+    // should never produce a warning
+    declare warning : call(int B.run()) :
+        "declare warning : call(int B.run())";
 }
+
+/** @testcase PR#41952 XLint when call declaring type is not defining type */