"Remove redundant toString": fix false positive for nested nullable
So #KT-24557 Fixed
This commit is contained in:
committed by
Mikhail Glukhikh
parent
4038d4d507
commit
8969e7a6e1
+6
@@ -0,0 +1,6 @@
|
||||
// WITH_RUNTIME
|
||||
data class Foo(val name: String)
|
||||
|
||||
fun test(foo: Foo?) {
|
||||
val s: String? = foo?.name
|
||||
}
|
||||
Reference in New Issue
Block a user