Files
kotlin-fork/compiler/fir/analysis-tests/testData/extendedCheckers/RedundantCallOfConversionMethod/nullable2.kt
T
2020-08-27 16:07:04 +03:00

7 lines
165 B
Kotlin
Vendored

// IS_APPLICABLE: false
// WITH_RUNTIME
data class Foo(val name: String)
fun nullable2(foo: Foo?) {
val <!UNUSED_VARIABLE!>s<!>: String = foo?.name.toString()
}