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.

pr77269c.aj 247B

12345678910111213141516171819
  1. package pack;
  2. class Test {
  3. public void testMethod() {
  4. new Runnable() {
  5. public void run() {
  6. someMethod();
  7. }
  8. };
  9. }
  10. public void someMethod() {
  11. }
  12. }
  13. aspect A {
  14. declare warning : call(void someMethod(..)) : "blah blah blah";
  15. }