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

9 lines
176 B
Kotlin

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