Add inspection/intention for redundant calls of conversion methods #KT-10871 Fixed

Also #KT-12625 Fixed
This commit is contained in:
shiraji
2016-10-05 13:48:12 +09:00
committed by Mikhail Glukhikh
parent a5d6559056
commit a1f1716044
45 changed files with 325 additions and 0 deletions
@@ -0,0 +1,6 @@
// WITH_RUNTIME
fun test() {
val foo: String? = null
foo?.toString()<caret>
}