Files
kotlin/compiler/testData/diagnostics/tests/dataFlow/local/LocalClassDefaultParameters.kt
2014-10-01 18:52:52 +04:00

9 lines
178 B
Kotlin

fun test(x: Any) {
if (x !is String) return
class Local(s: String = <!DEBUG_INFO_SMARTCAST!>x<!>) {
fun foo(s: String = <!DEBUG_INFO_SMARTCAST!>x<!>): String = s
}
}