diff options
author | aclement <aclement> | 2006-09-13 13:06:38 +0000 |
---|---|---|
committer | aclement <aclement> | 2006-09-13 13:06:38 +0000 |
commit | 9892449cd6366540f650b45f548f8cc74f6fcae2 (patch) | |
tree | 4d279cbaa104fbd3d8030d6236fdf106be5e69eb /tests/bugs153/pr156058 | |
parent | b49e8cae5b2473c7285c29f3ff33a621513ebbd5 (diff) | |
download | aspectj-9892449cd6366540f650b45f548f8cc74f6fcae2.tar.gz aspectj-9892449cd6366540f650b45f548f8cc74f6fcae2.zip |
test for 156058 - commented out
Diffstat (limited to 'tests/bugs153/pr156058')
-rw-r--r-- | tests/bugs153/pr156058/Bug.java | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/bugs153/pr156058/Bug.java b/tests/bugs153/pr156058/Bug.java new file mode 100644 index 000000000..6c63dfe07 --- /dev/null +++ b/tests/bugs153/pr156058/Bug.java @@ -0,0 +1,11 @@ +aspect MyAspect implements MyInterface<MyClass> { + before() : MyAspect1<MyClass>.myPointcutInInterface(){ } +} + +class MyClass { } + +interface MyInterface<T>{ + public abstract static aspect MyAspect1<T> { + public final pointcut myPointcutInInterface() : call(* *..*.*(..)); + } +} |