Parcourir la source

can't use type patterns in target

tags/V_1_1_b2
jhugunin il y a 21 ans
Parent
révision
d0c3d7161f
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. 2
    2
      tests/base/test131/Driver.java

+ 2
- 2
tests/base/test131/Driver.java Voir le fichier

@@ -32,12 +32,12 @@ aspect TopAdvice {
return result+10;
}

int around(): target(p1.*) && call(int *()) {
int around(): call(int p1.*.*()) {
int result = proceed();
return result+100;
}

int around(): target(p1..*) && call(int *()) {
int around(): call(int p1..*.*()) {
int result = proceed();
return result+1000;
}

Chargement…
Annuler
Enregistrer