aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs172/pr394535/Bug.java
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bugs172/pr394535/Bug.java')
-rw-r--r--tests/bugs172/pr394535/Bug.java23
1 files changed, 23 insertions, 0 deletions
diff --git a/tests/bugs172/pr394535/Bug.java b/tests/bugs172/pr394535/Bug.java
new file mode 100644
index 000000000..8370a59b3
--- /dev/null
+++ b/tests/bugs172/pr394535/Bug.java
@@ -0,0 +1,23 @@
+
+aspect X {
+ declare parents: Bug.ClassA implements java.io.Serializable;
+}
+public class Bug {
+
+// @org.springframework.beans.factory.annotation.Configurable
+ public static class ClassA<T extends Interface1 & Interface2> {
+ }
+
+ public static class ClassB extends ClassA<ClassB> implements Interface1, Interface2 {
+ }
+
+ public interface Interface1 {
+ }
+
+ public interface Interface2 {
+ }
+
+ public static void main(String[] args) throws Exception {
+ System.out.println(ClassB.class.getGenericSuperclass());
+ }
+}