We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f780a37 commit 581fee0Copy full SHA for 581fee0
src/dotty/tools/dotc/typer/Typer.scala
@@ -165,7 +165,7 @@ class Typer extends Namer with TypeAssigner with Applications with Implicits wit
165
tree.pos)
166
found
167
}
168
- val Name = name.toTermName
+ val Name = name.toTermName.decode
169
selectors match {
170
case Pair(Ident(from), Ident(Name)) :: rest =>
171
val selName = if (name.isTypeName) from.toTypeName else from
tests/pos/seq-ordering.scala
@@ -0,0 +1,9 @@
1
+import Ordering.Implicits._
2
+
3
+class A {
4
+ import Predef.{ implicitly => ? }
5
6
+ ?[Ordering[List[Int]]]
7
+ ?[Ordering[IndexedSeq[(Int, String)]]]
8
+ ?[Ordering[Seq[Seq[Int]]]]
9
+}
0 commit comments