summaryrefslogtreecommitdiffstats
path: root/tests/features152/synthetic
diff options
context:
space:
mode:
authoraclement <aclement>2007-01-10 16:10:56 +0000
committeraclement <aclement>2007-01-10 16:10:56 +0000
commitd0650f0835a1830584fcb79f405286c8a6357d47 (patch)
treeb8e792d3fbcc6c6d11e0bd990d06d0f526b8db02 /tests/features152/synthetic
parent18535100f9d21aea94134defd298fc277b06ee57 (diff)
downloadaspectj-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.aj2
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());