diff --git a/compiler/fir/resolve/src/org/jetbrains/kotlin/fir/resolve/FirDoubleColonExpressionResolver.kt b/compiler/fir/resolve/src/org/jetbrains/kotlin/fir/resolve/FirDoubleColonExpressionResolver.kt index 6ef5ed58dfb..09d77cd97c2 100644 --- a/compiler/fir/resolve/src/org/jetbrains/kotlin/fir/resolve/FirDoubleColonExpressionResolver.kt +++ b/compiler/fir/resolve/src/org/jetbrains/kotlin/fir/resolve/FirDoubleColonExpressionResolver.kt @@ -38,7 +38,7 @@ sealed class DoubleColonLHS(val type: ConeKotlinType) { // Returns true if this expression has the form "A" which means it's a type on the LHS of a double colon expression internal val FirFunctionCall.hasExplicitValueArguments: Boolean - get() = true // TODO: hasExplicitArgumentList || hasExplicitLambdaArguments + get() = arguments.isNotEmpty() class FirDoubleColonExpressionResolver(private val session: FirSession) {