Files
kotlin-fork/compiler/testData/diagnostics/tests/dataFlow/local/LocalClassBase.kt
T
2013-12-11 19:53:50 +04:00

11 lines
203 B
Kotlin

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_AUTOCAST!>x<!>, <!DEBUG_INFO_AUTOCAST!>y<!>) {
}
}