Files
kotlin-fork/idea/testData/checker/regression/callVariableAsFunctionWithAnonymousObjectArg.kt
T
2016-04-04 21:13:22 +03:00

4 lines
65 B
Kotlin
Vendored

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