diff options
author | aclement <aclement> | 2007-01-10 16:10:56 +0000 |
---|---|---|
committer | aclement <aclement> | 2007-01-10 16:10:56 +0000 |
commit | d0650f0835a1830584fcb79f405286c8a6357d47 (patch) | |
tree | b8e792d3fbcc6c6d11e0bd990d06d0f526b8db02 /tests/features152/synthetic | |
parent | 18535100f9d21aea94134defd298fc277b06ee57 (diff) | |
download | aspectj-d0650f0835a1830584fcb79f405286c8a6357d47.tar.gz aspectj-d0650f0835a1830584fcb79f405286c8a6357d47.zip |
test and fix for 168063 - incorrectly tagging a field as transient
Diffstat (limited to 'tests/features152/synthetic')
-rw-r--r-- | tests/features152/synthetic/TheWholeShow.aj | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/features152/synthetic/TheWholeShow.aj b/tests/features152/synthetic/TheWholeShow.aj index 0fa1c6642..bd91561c7 100644 --- a/tests/features152/synthetic/TheWholeShow.aj +++ b/tests/features152/synthetic/TheWholeShow.aj @@ -11,7 +11,7 @@ public class TheWholeShow { public static void main(String[] args) { Field[] twsFields = TheWholeShow.class.getDeclaredFields(); for (Field f : twsFields) { - if (!f.getName().equals("f") && !f.getName().equals("x")) { + if (!f.getName().equals("f") && !f.getName().equals("x") && !f.getName().startsWith("ajc$interField$")) { if (!f.isSynthetic()) { System.err.println("Found non-synthetic field: " + f.getName()); throw new IllegalStateException("Found non-synthetic field: " + f.getName()); |