6698e0ecc9
#KT-5335 Obsolete
12 lines
170 B
Kotlin
Vendored
12 lines
170 B
Kotlin
Vendored
class C {
|
|
fun foo() {}
|
|
}
|
|
|
|
fun test(a: C?, nn: () -> Nothing?) {
|
|
a ?: nn()
|
|
a<!UNSAFE_CALL!>.<!>foo()
|
|
|
|
a ?: return
|
|
<!DEBUG_INFO_SMARTCAST!>a<!>.foo()
|
|
}
|