diff options
author | acolyer <acolyer> | 2005-11-23 12:52:27 +0000 |
---|---|---|
committer | acolyer <acolyer> | 2005-11-23 12:52:27 +0000 |
commit | 8b294d9e4f02625c4c3391612242969fb4b6be57 (patch) | |
tree | 15b4adfb80b1d162c1a48191b694acfda70eae19 /tests/new/OddConstructors.java | |
parent | 504e4300204475cef1254de5d1308863c43b26e7 (diff) | |
download | aspectj-8b294d9e4f02625c4c3391612242969fb4b6be57.tar.gz aspectj-8b294d9e4f02625c4c3391612242969fb4b6be57.zip |
tests and fix for pr103157
Diffstat (limited to 'tests/new/OddConstructors.java')
-rw-r--r-- | tests/new/OddConstructors.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/new/OddConstructors.java b/tests/new/OddConstructors.java index 72717d275..122e6719c 100644 --- a/tests/new/OddConstructors.java +++ b/tests/new/OddConstructors.java @@ -35,7 +35,7 @@ abstract aspect A { //&& initialization(new(..)) ; && initialization(I.new(..)) ; - after() returning(Object o): j() { + after() returning: j() { Tester.note("advised default constructor"); count++; } |