Files
kotlin-fork/compiler/fir/analysis-tests/testData/resolveWithStdlib/smartcasts/assertIs.kt
T
2021-07-07 14:28:00 +03:00

6 lines
88 B
Kotlin
Vendored

import kotlin.test.*
fun foo(arg: Any) {
assertIs<String>(arg, "")
arg.length
}