From: aclement Date: Fri, 7 May 2004 08:21:22 +0000 (+0000) Subject: Tests for Bugzilla Bug 59778 X-Git-Tag: V1_2_0~20 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=3ed93c6d54e8a54c75398d341d5bd081d913aa3b;p=aspectj.git Tests for Bugzilla Bug 59778 InterTypeMethodDeclaration.java:104 --- diff --git a/tests/ajcTests.xml b/tests/ajcTests.xml index 3f9e7cc1c..0c64c5dd2 100644 --- a/tests/ajcTests.xml +++ b/tests/ajcTests.xml @@ -7689,4 +7689,14 @@ + + + + + + + + diff --git a/tests/bugs/compileOrdering/B.java b/tests/bugs/compileOrdering/B.java new file mode 100644 index 000000000..faf391c8a --- /dev/null +++ b/tests/bugs/compileOrdering/B.java @@ -0,0 +1,6 @@ +public abstract aspect B { + public void C.method(Serializable s) { //error: Serializable not imported + } +} +class C { +} diff --git a/tests/bugs/compileOrdering/D.java b/tests/bugs/compileOrdering/D.java new file mode 100644 index 000000000..324c50e1c --- /dev/null +++ b/tests/bugs/compileOrdering/D.java @@ -0,0 +1,2 @@ +class D { } +