Files
kotlin/compiler/testData/diagnostics/tests/dataFlow/local/LocalClassDefaultParameters.kt
Evgeny Gerashchenko 897854b3dc KT-6671 Report unused constructor parameters
#KT-6671 fixed
2015-01-27 22:38:27 +03:00

9 lines
201 B
Kotlin
Vendored

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