diff options
author | aclement <aclement> | 2008-06-17 20:28:46 +0000 |
---|---|---|
committer | aclement <aclement> | 2008-06-17 20:28:46 +0000 |
commit | 204bbed5a8dc6f324b1a6b904434f09cb49e6aa6 (patch) | |
tree | 272a276ef2cca8c3c9a84e20c9c40d2d9891b401 /tests/java5/reflection | |
parent | 3808a3ed369ef86b5f55307fa30f1c80a7f44f0c (diff) | |
download | aspectj-204bbed5a8dc6f324b1a6b904434f09cb49e6aa6.tar.gz aspectj-204bbed5a8dc6f324b1a6b904434f09cb49e6aa6.zip |
fix error revealed by allowing mixed syntaxes
Diffstat (limited to 'tests/java5/reflection')
-rw-r--r-- | tests/java5/reflection/AtAspectJDeclareParents.aj | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/java5/reflection/AtAspectJDeclareParents.aj b/tests/java5/reflection/AtAspectJDeclareParents.aj index fddf12a56..c44982aae 100644 --- a/tests/java5/reflection/AtAspectJDeclareParents.aj +++ b/tests/java5/reflection/AtAspectJDeclareParents.aj @@ -19,6 +19,8 @@ interface I{ class Impl implements I { + public Impl() {} + private int x; public int getX() { return this.x; } |