diff options
author | aclement <aclement> | 2005-11-04 16:26:06 +0000 |
---|---|---|
committer | aclement <aclement> | 2005-11-04 16:26:06 +0000 |
commit | 21cf37dd535baf1b9977044ce4f05520538116ba (patch) | |
tree | 2408636915b2a65b7c84b439894e51725fe3d8e5 /tests/bugs150 | |
parent | b943da4e1ea1e67a684ec23d50668fe28f8abe9c (diff) | |
download | aspectj-21cf37dd535baf1b9977044ce4f05520538116ba.tar.gz aspectj-21cf37dd535baf1b9977044ce4f05520538116ba.zip |
Fix for pr90143: I'm on fire today ;)
Diffstat (limited to 'tests/bugs150')
-rw-r--r-- | tests/bugs150/pr90143/A.aj | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/tests/bugs150/pr90143/A.aj b/tests/bugs150/pr90143/A.aj index c02719275..923eaf12c 100644 --- a/tests/bugs150/pr90143/A.aj +++ b/tests/bugs150/pr90143/A.aj @@ -2,32 +2,31 @@ class MyClass { protected Object method() { return null; } + } abstract aspect A { - interface C2 { } + interface C { } - public void C2.hello() { + public void C.hello() { new MyClass() { protected Object methodX() { - return -//super. -method(); + return super.method(); } }; } + + class C2 { } - // ok - class C { } - public void C.hello() { + public void C2.hello() { new MyClass() { protected Object methodX() { return super.method(); } }; } - + } |