Files
kotlin-fork/compiler/testData/diagnostics/tests/cast/NullableToNullable.kt
T

8 lines
175 B
Kotlin
Vendored

// FIR_IDENTICAL
// From KT-13324: always succeeds
val x = null as String?
// From KT-260: sometimes succeeds
fun foo(a: String?): Int? {
val c = a as? Int?
return c
}