10 lines
204 B
Kotlin
Vendored
10 lines
204 B
Kotlin
Vendored
open class Base(x: String, y: Int)
|
|
|
|
fun test(x: Any, y: Int?) {
|
|
if (x !is String) return
|
|
if (y == null) return
|
|
|
|
class Local: Base(<!DEBUG_INFO_SMARTCAST!>x<!>, <!DEBUG_INFO_SMARTCAST!>y<!>) {
|
|
}
|
|
}
|