Files
kotlin-fork/idea/testData/checker/regression/callVariableAsFunctionWithAnonymousObjectArg.kt
T
2020-10-14 22:11:10 +03:00

5 lines
83 B
Kotlin
Vendored

// FIR_COMPARISON
fun f() {
val g = 3
<error>g</error>(object : Any() {})
}