diff options
author | acolyer <acolyer> | 2005-08-26 10:50:22 +0000 |
---|---|---|
committer | acolyer <acolyer> | 2005-08-26 10:50:22 +0000 |
commit | efb3c54464efbcffdf82311e63b10eeeef4f349b (patch) | |
tree | b732eda2d8f495e0d95b8a7f8a7cd97a5d424c38 /tests/src | |
parent | 100d9e056735e85610fe9072527a0369dc867ec5 (diff) | |
download | aspectj-efb3c54464efbcffdf82311e63b10eeeef4f349b.tar.gz aspectj-efb3c54464efbcffdf82311e63b10eeeef4f349b.zip |
tests for pr108104
Diffstat (limited to 'tests/src')
-rw-r--r-- | tests/src/org/aspectj/systemtest/ajc150/Ajc150Tests.java | 4 | ||||
-rw-r--r-- | tests/src/org/aspectj/systemtest/ajc150/ajc150.xml | 5 |
2 files changed, 9 insertions, 0 deletions
diff --git a/tests/src/org/aspectj/systemtest/ajc150/Ajc150Tests.java b/tests/src/org/aspectj/systemtest/ajc150/Ajc150Tests.java index f3fb8cb6f..d82a6b9ce 100644 --- a/tests/src/org/aspectj/systemtest/ajc150/Ajc150Tests.java +++ b/tests/src/org/aspectj/systemtest/ajc150/Ajc150Tests.java @@ -282,6 +282,10 @@ public class Ajc150Tests extends org.aspectj.testing.XMLBasedAjcTestCase { runTest("matching against Object[]"); } + public void testMultipleAnonymousInnerClasses_pr108104() { + runTest("multiple anonymous inner classes 2"); + } + // helper methods..... public SyntheticRepository createRepos(File cpentry) { diff --git a/tests/src/org/aspectj/systemtest/ajc150/ajc150.xml b/tests/src/org/aspectj/systemtest/ajc150/ajc150.xml index a78887390..99182a7e1 100644 --- a/tests/src/org/aspectj/systemtest/ajc150/ajc150.xml +++ b/tests/src/org/aspectj/systemtest/ajc150/ajc150.xml @@ -132,6 +132,11 @@ <message kind="error" line="4" text="wildcard type pattern not allowed"></message> </compile> </ajc-test> + + <ajc-test dir="bugs150" pr="108104" title="multiple anonymous inner classes 2"> + <compile files="pr108104.aj" options="-1.5"> + </compile> + </ajc-test> <ajc-test dir="bugs150/pr106130" pr="106130" title="test weaving with > 256 locals"> <compile files="AroundLotsOfVars.java LotsOfVars.java" options="-preserveAllLocals"/> |