summaryrefslogtreecommitdiff
path: root/test/files/pos/seq-ordering.scala
blob: 517d8ae8aafefa374d6f3d77d9cc6b0fe1ef56dc (plain) (blame)
1
2
3
4
5
6
7
8
9
import Ordering.Implicits._

class A {
  import Predef.{ implicitly => ? }

  ?[Ordering[List[Int]]]
  ?[Ordering[IndexedSeq[(Int, String)]]]
  ?[Ordering[Seq[Seq[Int]]]]
}