KT-15142 Remove redundant calls of the conversion method wrongly shown for Any?.toString

#KT-15142 Fixed
This commit is contained in:
shiraji
2016-12-09 00:25:55 +09:00
committed by Mikhail Glukhikh
parent 18cb734c58
commit 44ca45123d
3 changed files with 13 additions and 4 deletions
@@ -0,0 +1,5 @@
// WITH_RUNTIME
// IS_APPLICABLE: false
fun foo(s: String?) {
val t: String = s.toString()<caret>
}