aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs150
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bugs150')
-rw-r--r--tests/bugs150/PR119543.java15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/bugs150/PR119543.java b/tests/bugs150/PR119543.java
new file mode 100644
index 000000000..df9eca3a4
--- /dev/null
+++ b/tests/bugs150/PR119543.java
@@ -0,0 +1,15 @@
+public class PR119543 {
+
+ public abstract static aspect A<T> {
+
+ private pointcut caching();
+ private pointcut permitted();
+
+ before() : caching() {
+ }
+ }
+
+ static aspect A1 extends A<String> {
+ }
+
+}