diff options
author | aclement <aclement> | 2004-08-20 13:26:14 +0000 |
---|---|---|
committer | aclement <aclement> | 2004-08-20 13:26:14 +0000 |
commit | 8b550ad855b72b6eeb61f3ade30f383bf337a8e6 (patch) | |
tree | 27780b3c1a23df497822be84a3851586445935e8 /tests/bugs | |
parent | bbc409e17b6781826e86c3548790668553a8636b (diff) | |
download | aspectj-8b550ad855b72b6eeb61f3ade30f383bf337a8e6.tar.gz aspectj-8b550ad855b72b6eeb61f3ade30f383bf337a8e6.zip |
Fix for Bugzilla Bug 70794
The introduction on interface causes the interface implementation class error
(testcase now expects the error text)
Diffstat (limited to 'tests/bugs')
-rw-r--r-- | tests/bugs/interAbstract/InterfaceMethodDeclarationAbstract.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/bugs/interAbstract/InterfaceMethodDeclarationAbstract.java b/tests/bugs/interAbstract/InterfaceMethodDeclarationAbstract.java index 7eb4abab4..efa4b84f6 100644 --- a/tests/bugs/interAbstract/InterfaceMethodDeclarationAbstract.java +++ b/tests/bugs/interAbstract/InterfaceMethodDeclarationAbstract.java @@ -29,7 +29,7 @@ public class InterfaceMethodDeclarationAbstract { interface I {} aspect A { - abstract int I.getInt(); // implicitly public + abstract int I.getInt(); // Error expected: Needs to be public before() : execution(int getInt()) && target(I) { Tester.event("before-execution"); } |