Parcourir la source

262905: recursive non matching cflow pointcut: corrected testcase

tags/pre268419
aclement il y a 15 ans
Parent
révision
6133a38cd5
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1
    1
      tests/bugs150/PR93345.aj

+ 1
- 1
tests/bugs150/PR93345.aj Voir le fichier

@@ -4,7 +4,7 @@ class AClass {
}

aspect AnAspect {
pointcut a() : cflow( execution(* *(..)) );
pointcut a() : execution(* *(..)) && cflow( execution(* *(..)) );

before() : a() {
System.out.println("before a");

Chargement…
Annuler
Enregistrer