aboutsummaryrefslogtreecommitdiffstats
path: root/tests/ajcTests.xml
diff options
context:
space:
mode:
authoraclement <aclement>2004-02-26 13:34:28 +0000
committeraclement <aclement>2004-02-26 13:34:28 +0000
commit31bf65adc6905c7b6922a6d2b15e836267f33151 (patch)
tree55904bee4f12746aa966b3e1618f0e853980584b /tests/ajcTests.xml
parentff32dfb1ea7056dcafe28c7d2b78141568cc4fc6 (diff)
downloadaspectj-31bf65adc6905c7b6922a6d2b15e836267f33151.tar.gz
aspectj-31bf65adc6905c7b6922a6d2b15e836267f33151.zip
Fix for Bugzilla Bug 52107
NoSuchMethodError accessing field declared on interface
Diffstat (limited to 'tests/ajcTests.xml')
-rw-r--r--tests/ajcTests.xml27
1 files changed, 27 insertions, 0 deletions
diff --git a/tests/ajcTests.xml b/tests/ajcTests.xml
index 2081e9e7c..35b7d15f9 100644
--- a/tests/ajcTests.xml
+++ b/tests/ajcTests.xml
@@ -7236,4 +7236,31 @@
</compile>
</ajc-test>
+ <ajc-test dir="bugs/fieldsOnInterfaces"
+ pr="52107"
+ title="declare String field on interface">
+ <compile files="StringFieldOnInterface.java">
+ <message kind="warning" line="16" text="this affected type is not exposed"/>
+ <message kind="warning" line="17" text="this affected type is not exposed"/>
+ </compile>
+ </ajc-test>
+
+ <ajc-test dir="bugs/fieldsOnInterfaces"
+ pr="52107"
+ title="declare int field on interface">
+ <compile files="IntFieldOnInterface.java">
+ <message kind="warning" line="27" text="this affected type is not exposed"/>
+ <message kind="warning" line="28" text="this affected type is not exposed"/>
+ </compile>
+ </ajc-test>
+
+ <ajc-test dir="bugs/fieldsOnInterfaces"
+ pr="52107"
+ title="declare Object field on interface">
+ <compile files="ObjectFieldOnInterface.java">
+ <message kind="warning" line="20" text="this affected type is not exposed"/>
+ <message kind="warning" line="21" text="this affected type is not exposed"/>
+ </compile>
+ </ajc-test>
+
</suite>