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

9 lines
226 B
Kotlin

fun foo(x: Any?) {
if (x is String) {
object : Base(<!DEBUG_INFO_SMARTCAST!>x<!>) {
fun bar() = <!DEBUG_INFO_SMARTCAST!>x<!>.length()
}
}
}
open class Base(<!UNUSED_PARAMETER!>s<!>: String)