aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/pos/hkrange.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/pos/hkrange.scala')
-rw-r--r--tests/pending/pos/hkrange.scala5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/pending/pos/hkrange.scala b/tests/pending/pos/hkrange.scala
new file mode 100644
index 000000000..a6803230e
--- /dev/null
+++ b/tests/pending/pos/hkrange.scala
@@ -0,0 +1,5 @@
+class A {
+ def f[CC[X] <: Traversable[X]](x: CC[Int]) = ()
+
+ f(1 to 5)
+}