summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/files/pos/seq-ordering.scala7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/files/pos/seq-ordering.scala b/test/files/pos/seq-ordering.scala
new file mode 100644
index 0000000000..bcf1a79004
--- /dev/null
+++ b/test/files/pos/seq-ordering.scala
@@ -0,0 +1,7 @@
+class A {
+ import Predef.{ implicitly => ? }
+
+ ?[Ordering[List[Int]]]
+ ?[Ordering[IndexedSeq[(Int, String)]]]
+ ?[Ordering[Seq[Seq[Int]]]]
+}