summaryrefslogtreecommitdiff
path: root/test/files/pos/ilya/J.java
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/ilya/J.java')
-rw-r--r--test/files/pos/ilya/J.java14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/files/pos/ilya/J.java b/test/files/pos/ilya/J.java
new file mode 100644
index 0000000000..c44169ca1b
--- /dev/null
+++ b/test/files/pos/ilya/J.java
@@ -0,0 +1,14 @@
+package test;
+
+class Foo {
+}
+
+class Boo<T extends Foo>{}
+
+class Bar<BooT extends Boo<FooT>, FooT extends Foo>{
+ private final int myInt;
+
+ public Bar(int i) {
+ myInt = i;
+ }
+} \ No newline at end of file