Files
kotlin-fork/compiler/fir/analysis-tests/testData/resolve/smartcasts/problems/invoke.kt
T
2020-03-19 09:51:01 +03:00

10 lines
162 B
Kotlin
Vendored

fun Any.withInvoke(f: String.() -> Unit) {
if (this is String) {
f() // Should be OK
}
}
fun String.withInvoke(f: String.() -> Unit) {
f()
}