aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authoraclement <aclement>2005-10-28 07:17:38 +0000
committeraclement <aclement>2005-10-28 07:17:38 +0000
commit3ad7a2ca28b78973741db19ba78c60f6feb81f43 (patch)
treefcc51cc4f28622645213732e4f469c1b81d293e0 /tests
parent8cea30fedf7a74133c67623ec9286ac9578c9a88 (diff)
downloadaspectj-3ad7a2ca28b78973741db19ba78c60f6feb81f43.tar.gz
aspectj-3ad7a2ca28b78973741db19ba78c60f6feb81f43.zip
naughty - Andy broke the build!
Diffstat (limited to 'tests')
-rw-r--r--tests/bugs150/pr113947/case1/AbstractListSupport.java2
-rw-r--r--tests/bugs150/pr113947/case2/AbstractListSupport.java2
-rw-r--r--tests/src/org/aspectj/systemtest/ajc150/ajc150.xml2
3 files changed, 3 insertions, 3 deletions
diff --git a/tests/bugs150/pr113947/case1/AbstractListSupport.java b/tests/bugs150/pr113947/case1/AbstractListSupport.java
index facc7e37c..941ac06c1 100644
--- a/tests/bugs150/pr113947/case1/AbstractListSupport.java
+++ b/tests/bugs150/pr113947/case1/AbstractListSupport.java
@@ -1,7 +1,7 @@
public abstract aspect AbstractListSupport<I,M extends I> {
- declare parents : @LinkedListItem * implements M;
+ //declare parents : @LinkedListItem * implements M;
private M M.next;
diff --git a/tests/bugs150/pr113947/case2/AbstractListSupport.java b/tests/bugs150/pr113947/case2/AbstractListSupport.java
index 6b9e647d8..9f8ac8d5e 100644
--- a/tests/bugs150/pr113947/case2/AbstractListSupport.java
+++ b/tests/bugs150/pr113947/case2/AbstractListSupport.java
@@ -1,7 +1,7 @@
public abstract aspect AbstractListSupport<I,M extends I> {
- declare parents : @LinkedListItem * implements M;
+ //declare parents : @LinkedListItem * implements M;
// Interface
diff --git a/tests/src/org/aspectj/systemtest/ajc150/ajc150.xml b/tests/src/org/aspectj/systemtest/ajc150/ajc150.xml
index 992cd3808..44304035a 100644
--- a/tests/src/org/aspectj/systemtest/ajc150/ajc150.xml
+++ b/tests/src/org/aspectj/systemtest/ajc150/ajc150.xml
@@ -24,7 +24,7 @@
</ajc-test>
<ajc-test dir="bugs150/pr113947/case2" title="maws generic aspect - 2">
- <compile files="AbstractListSupport.java" options="-1.5"/><!--,AnotherItem.java,Item.java,LinkedList.java,LinkedListItem.java,ListItem.java,StringList.java" options="-1.5"/-->
+ <compile files="AbstractListSupport.java,AnotherItem.java,Item.java,LinkedList.java,LinkedListItem.java,ListItem.java,StringList.java" options="-1.5"/>
</ajc-test>
<ajc-test dir="bugs150/pr113861" title="field-get problems with generic field">