Files
kotlin-fork/idea/testData/resolve/partialBodyResolve/IfNotIsMyErrorWithAliasImport.kt
T
Pavel Kirpichenkov 83144d59be Fix tests
2020-06-10 10:58:42 +03:00

10 lines
188 B
Kotlin
Vendored

import kotlin.Nothing as MyNothing
fun myNothingFun(): MyNothing = throw Exception()
fun foo(p: Any) {
if (p !is String) {
myNothingFun()
}
println(<caret>p.length)
}