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

6 lines
180 B
Kotlin
Vendored

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