File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
compiler/src/dotty/tools/dotc Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -143,7 +143,7 @@ object PathResolver {
143
143
println(Defaults )
144
144
}
145
145
else {
146
- implicit val ctx = (new ContextBase ).initialCtx // Dotty deviation: implicits need explicit type
146
+ implicit val ctx = (new ContextBase ).initialCtx
147
147
val ArgsSummary (sstate, rest, errors) =
148
148
ctx.settings.processArguments(args.toList, true )
149
149
errors.foreach(println)
Original file line number Diff line number Diff line change @@ -3378,7 +3378,7 @@ object Types {
3378
3378
3379
3379
/** Map this function over given type */
3380
3380
def mapOver (tp : Type ): Type = {
3381
- implicit val ctx = this .ctx // Dotty deviation: implicits need explicit type
3381
+ implicit val ctx = this .ctx
3382
3382
tp match {
3383
3383
case tp : NamedType =>
3384
3384
if (stopAtStatic && tp.symbol.isStatic) tp
Original file line number Diff line number Diff line change @@ -1638,7 +1638,7 @@ class Typer extends Namer with TypeAssigner with Applications with Implicits wit
1638
1638
tryInsertImplicitOnQualifier(tree, pt).getOrElse(fallBack)
1639
1639
1640
1640
if (isApplyProto(pt)) tryImplicit
1641
- else tryEither(tryApply(_))((_, _) => tryImplicit)
1641
+ else tryEither(tryApply(_))((_, _) => tryImplicit)
1642
1642
}
1643
1643
1644
1644
/** If this tree is a select node `qual.name`, try to insert an implicit conversion
You can’t perform that action at this time.
0 commit comments