RedundantLetInspection: remove 'let' safe call correctly

#KT-37148 Fixed
This commit is contained in:
Toshiaki Kameyama
2020-03-02 16:13:03 +09:00
committed by Yan Zhulanow
parent a2f55e8b7c
commit b8ae13b3d9
4 changed files with 10 additions and 1 deletions
@@ -0,0 +1,2 @@
// WITH_RUNTIME
val a = 1?.let<caret> { it }?.let { it }
@@ -0,0 +1,2 @@
// WITH_RUNTIME
val a = 1?.let { it }