[FIR] Fix overload conflicts resolution for callable references with defaults

This commit is contained in:
Dmitriy Novozhilov
2021-05-13 12:40:58 +03:00
committed by teamcityserver
parent e3b92fd561
commit 1a3b5657c7
8 changed files with 77 additions and 1 deletions
@@ -105,6 +105,9 @@ class Candidate(
set(value) {
field = value
usesSuspendConversion = value?.suspendConversionStrategy == SuspendConversionStrategy.SUSPEND_CONVERSION
if (value != null) {
numDefaults = value.defaults
}
}
var usesSuspendConversion: Boolean = false