소스 검색

can't use type patterns in target

tags/V_1_1_b2
jhugunin 21 년 전
부모
커밋
d0c3d7161f
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2
    2
      tests/base/test131/Driver.java

+ 2
- 2
tests/base/test131/Driver.java 파일 보기

@@ -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;
}

Loading…
취소
저장