17 lines
307 B
Kotlin
Vendored
17 lines
307 B
Kotlin
Vendored
// !CHECK_TYPE
|
|
|
|
fun foo(x: Int?): Int = x!!
|
|
|
|
fun elvis(x: Number?): Int {
|
|
val result = (x as Int?) ?: foo(x)
|
|
checkSubtype<Int?>(x)
|
|
return result
|
|
}
|
|
|
|
|
|
fun elvisWithRHSTypeInfo(x: Number?): Any? {
|
|
val result = x ?: x!!
|
|
checkSubtype<Int?>(<!ARGUMENT_TYPE_MISMATCH!>x<!>)
|
|
return result
|
|
}
|