diff options
author | Andy Clement <aclement@gopivotal.com> | 2013-10-23 12:44:23 -0700 |
---|---|---|
committer | Andy Clement <aclement@gopivotal.com> | 2013-10-23 12:44:23 -0700 |
commit | b2cd5fa175facc39bd0d1af5a4646b9b39c8bcda (patch) | |
tree | 1e05a3e93fffb9a38c207bb53256cc4bac34c5b8 /tests/bugs174 | |
parent | 07735499f752e0aa8988a8953f11ac72d576afdc (diff) | |
download | aspectj-b2cd5fa175facc39bd0d1af5a4646b9b39c8bcda.tar.gz aspectj-b2cd5fa175facc39bd0d1af5a4646b9b39c8bcda.zip |
419279: more configurable lint options
Diffstat (limited to 'tests/bugs174')
-rw-r--r-- | tests/bugs174/pr419279/Code.java | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/bugs174/pr419279/Code.java b/tests/bugs174/pr419279/Code.java new file mode 100644 index 000000000..672d720ef --- /dev/null +++ b/tests/bugs174/pr419279/Code.java @@ -0,0 +1,10 @@ +public aspect Code { + before(): execution(* *(String)) { } + before(): call(* someMethod(..)) { + System.out.println(thisJoinPoint); + } + public void foo() { + someMethod(); + } + public void someMethod(){} +} |