aboutsummaryrefslogtreecommitdiffstats
path: root/tests/ajcTests.xml
diff options
context:
space:
mode:
authoraclement <aclement>2004-05-14 09:27:42 +0000
committeraclement <aclement>2004-05-14 09:27:42 +0000
commit7051338a0064c3a43223e26e3ace8b64258200d7 (patch)
treebd2c3409b46870df6b8efcff357d37b1e3954b0d /tests/ajcTests.xml
parent66818c77ef60abcd8562e0482fe44541ad185c0a (diff)
downloadaspectj-7051338a0064c3a43223e26e3ace8b64258200d7.tar.gz
aspectj-7051338a0064c3a43223e26e3ace8b64258200d7.zip
Tests for Bugzilla Bug 62073
false ambigous binding error (introduced in 1.2rc2)
Diffstat (limited to 'tests/ajcTests.xml')
-rw-r--r--tests/ajcTests.xml16
1 files changed, 14 insertions, 2 deletions
diff --git a/tests/ajcTests.xml b/tests/ajcTests.xml
index 35742e80c..d30ddb380 100644
--- a/tests/ajcTests.xml
+++ b/tests/ajcTests.xml
@@ -7710,8 +7710,8 @@
<ajc-test dir="bugs"
pr="61568" title="wrong variable binding in || pointcuts">
<compile files="DisjunctVarBinding.java">
- <message kind="error" line="18" text="Ambiguous binding of type B"/>
- <message kind="error" line="18" text="Ambiguous binding of type A"/>
+ <message kind="error" line="34" text="Ambiguous binding of type B"/>
+ <message kind="error" line="34" text="Ambiguous binding of type A"/>
</compile>
</ajc-test>
@@ -7721,5 +7721,17 @@
<message kind="warning" line="10" text="no interface constructor-execution join point"/>
</compile>
</ajc-test>
+
+ <ajc-test dir="bugs"
+ pr="62073" title="false ambigous binding error (introduced in 1.2rc2)">
+ <compile files="DisjunctVarBinding_2.java,DisjunctVarBinding_3.java">
+ <message kind="error" line="25" file="DisjunctVarBinding_2.java" text="Ambiguous binding of type B"/>
+ <message kind="error" line="25" file="DisjunctVarBinding_2.java" text="Ambiguous binding of type A"/>
+ </compile>
+ <compile files="DisjunctVarBinding_3.java,DisjunctVarBinding_2.java">
+ <message kind="error" line="25" file="DisjunctVarBinding_2.java" text="Ambiguous binding of type B"/>
+ <message kind="error" line="25" file="DisjunctVarBinding_2.java" text="Ambiguous binding of type A"/>
+ </compile>
+ </ajc-test>
</suite>