FIR: discriminate generics during callable reference resolve

This commit is contained in:
Mikhail Glukhikh
2021-08-04 11:30:25 +03:00
committed by teamcityserver
parent e924ee3150
commit 22ccb7a943
3 changed files with 3 additions and 3 deletions
@@ -4,4 +4,4 @@ private fun DailyAggregatedDoubleFactor.aggregateBy(reduce: (Double, Double) ->
return mutableMapOf<String, Double>()
}
fun DailyAggregatedDoubleFactor.aggregateMin(): Map<String, Double> = aggregateBy(::<!OVERLOAD_RESOLUTION_AMBIGUITY!>minOf<!>)
fun DailyAggregatedDoubleFactor.aggregateMin(): Map<String, Double> = aggregateBy(::minOf)