Files
kotlin-fork/idea/testData/intentions/operatorToFunction/notApplicableCallWithInvokeMethod.kt
T

8 lines
119 B
Kotlin
Vendored

// IS_APPLICABLE: false
class coffee() {
fun invoke() {
}
}
fun main() {
val f = coffee().invoke<caret>()
}