summaryrefslogtreecommitdiffstats
path: root/tests/bugs164
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bugs164')
-rw-r--r--tests/bugs164/pr268689/ConcreteAspect.aj12
-rw-r--r--tests/bugs164/pr268689/GenericAspect.aj16
2 files changed, 28 insertions, 0 deletions
diff --git a/tests/bugs164/pr268689/ConcreteAspect.aj b/tests/bugs164/pr268689/ConcreteAspect.aj
new file mode 100644
index 000000000..10da726d9
--- /dev/null
+++ b/tests/bugs164/pr268689/ConcreteAspect.aj
@@ -0,0 +1,12 @@
+/**
+ *
+ */
+package none;
+
+/**
+ * @author Dawid Pytel
+ *
+ */
+public aspect ConcreteAspect extends GenericAspect<String> {
+
+}
diff --git a/tests/bugs164/pr268689/GenericAspect.aj b/tests/bugs164/pr268689/GenericAspect.aj
new file mode 100644
index 000000000..c102dc328
--- /dev/null
+++ b/tests/bugs164/pr268689/GenericAspect.aj
@@ -0,0 +1,16 @@
+/**
+ *
+ */
+package none;
+
+/**
+ * @author Dawid Pytel
+ *
+ */
+public abstract aspect GenericAspect<T> {
+
+ interface SomeInterface {
+ }
+
+ pointcut SomeConstructor(SomeInterface var) : execution(* SomeInterface(..)) && this(var);
+}