diff options
author | aclement <aclement> | 2008-03-20 22:21:59 +0000 |
---|---|---|
committer | aclement <aclement> | 2008-03-20 22:21:59 +0000 |
commit | 7faf2616d9d7dd7550753a96cf94f4ec7f2466e3 (patch) | |
tree | 47435391c4f8ecce3bc50ee179032bb9992376b1 /tests/bugs/DeclaringTypeWarning.java | |
parent | 6c54db924759b08effc806a93f633515c3e3a5d2 (diff) | |
download | aspectj-7faf2616d9d7dd7550753a96cf94f4ec7f2466e3.tar.gz aspectj-7faf2616d9d7dd7550753a96cf94f4ec7f2466e3.zip |
trigger build
Diffstat (limited to 'tests/bugs/DeclaringTypeWarning.java')
-rw-r--r-- | tests/bugs/DeclaringTypeWarning.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/bugs/DeclaringTypeWarning.java b/tests/bugs/DeclaringTypeWarning.java index 272404162..7cb3803d6 100644 --- a/tests/bugs/DeclaringTypeWarning.java +++ b/tests/bugs/DeclaringTypeWarning.java @@ -5,7 +5,7 @@ aspect C { before() : runB() { } pointcut runB(): call(void B.run()); // CW 6 XLint, for each shadow (12, 14) before() : call(int B.run()) {} // pointcut not matched -} +} public class DeclaringTypeWarning { public static void main(String[] args) { // ok with -1.4; otherwise, becomes A.run in bytecode |