File tree 1 file changed +3
-3
lines changed
compiler/src/dotty/tools/dotc/typer
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -2219,11 +2219,11 @@ trait Applications extends Compatibility {
2219
2219
deepPt match
2220
2220
case pt @ FunProto (_, PolyProto (targs, resType)) =>
2221
2221
// try to narrow further with snd argument list and following type params
2222
- resolveMapped(candidates ,
2222
+ resolveMapped(found ,
2223
2223
skipParamClause(pt.typedArgs().tpes, targs.tpes), resType)
2224
2224
case pt @ FunProto (_, resType : FunOrPolyProto ) =>
2225
2225
// try to narrow further with snd argument list
2226
- resolveMapped(candidates ,
2226
+ resolveMapped(found ,
2227
2227
skipParamClause(pt.typedArgs().tpes, Nil ), resType)
2228
2228
case _ =>
2229
2229
// prefer alternatives that need no eta expansion
@@ -2245,7 +2245,7 @@ trait Applications extends Compatibility {
2245
2245
// try again with a deeper known expected type
2246
2246
resolveOverloaded1(alts, deepPt)
2247
2247
else
2248
- candidates
2248
+ found
2249
2249
}
2250
2250
end resolveOverloaded1
2251
2251
You can’t perform that action at this time.
0 commit comments