summaryrefslogtreecommitdiff
path: root/test/files/pos/t1642b.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/t1642b.scala')
-rw-r--r--test/files/pos/t1642b.scala6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/files/pos/t1642b.scala b/test/files/pos/t1642b.scala
new file mode 100644
index 0000000000..72e53b0c9a
--- /dev/null
+++ b/test/files/pos/t1642b.scala
@@ -0,0 +1,6 @@
+package x
+abstract class H[A] {
+ type P <: R[P]
+ def a: P
+}
+class R[F]