Files
kotlin-fork/idea/idea-frontend-fir/testData/analysisSession/resolveCall/implicitConstructorDelegationCall.kt
T
2021-08-09 20:29:19 +02:00

10 lines
158 B
Kotlin
Vendored

class A {
constructor(i: Int)
}
fun call() {
val a = <expr>A(42)</expr>
}
// CALL: KtFunctionCall: targetFunction = <constructor>(i: kotlin.Int): A