aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/bugs150/pr110927/Case1.java18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/bugs150/pr110927/Case1.java b/tests/bugs150/pr110927/Case1.java
new file mode 100644
index 000000000..bf1abf3ce
--- /dev/null
+++ b/tests/bugs150/pr110927/Case1.java
@@ -0,0 +1,18 @@
+interface I {
+}
+
+interface IE1<T> {
+
+}
+
+interface IE2 {
+
+}
+
+aspect A1 {
+ declare parents : I implements IE1<String>;
+}
+
+aspect A2 {
+ declare parents : I implements IE2;
+} \ No newline at end of file