瀏覽代碼

experimental meta anno matching syntax test case

tags/V1_6_12M2
aclement 12 年之前
父節點
當前提交
816abde05d
共有 1 個檔案被更改,包括 19 行新增0 行删除
  1. 19
    0
      tests/features1611/metamatching/Code.java

+ 19
- 0
tests/features1611/metamatching/Code.java 查看文件

@@ -0,0 +1,19 @@
import java.lang.annotation.*;

@Retention(RetentionPolicy.RUNTIME)
@interface Meta {}

@Retention(RetentionPolicy.RUNTIME)
@Meta
@interface Foo {}

public class Code {

@Foo
public void m() {}
}
aspect X {
before(): execution(@@Meta * *(..)) {
}
}


Loading…
取消
儲存