diff options
author | Andy Clement <aclement@gopivotal.com> | 2014-04-04 12:01:18 -0700 |
---|---|---|
committer | Andy Clement <aclement@gopivotal.com> | 2014-04-04 12:01:18 -0700 |
commit | 4ffb0fd285609fa955450964e54fc3f8fd2996ad (patch) | |
tree | 5c045caaa02ff6ab533dcadcf609eabc702c2278 /tests/bugs180 | |
parent | 022196c5cb5fce666c6f746e4f698d4b03081e7b (diff) | |
download | aspectj-4ffb0fd285609fa955450964e54fc3f8fd2996ad.tar.gz aspectj-4ffb0fd285609fa955450964e54fc3f8fd2996ad.zip |
Fix 431541: Proceed expression not setting resolved type
Diffstat (limited to 'tests/bugs180')
-rwxr-xr-x | tests/bugs180/pr431541/Test.aj | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/bugs180/pr431541/Test.aj b/tests/bugs180/pr431541/Test.aj new file mode 100755 index 000000000..72a1eab89 --- /dev/null +++ b/tests/bugs180/pr431541/Test.aj @@ -0,0 +1,16 @@ +public aspect Test {
+
+ Object around(String s): call(public Object foo(String)) && args(s) {
+ return proceed(s);
+ }
+
+}
+
+class C {
+ public void m() {
+ foo("abc");
+ }
+ public Object foo(String s) {
+ return s;
+ }
+}
\ No newline at end of file |