Do not suggest replacing comparison to null with function call

So #KT-20620 Fixed
This commit is contained in:
Toshiaki Kameyama
2017-12-25 04:23:19 +03:00
committed by Mikhail Glukhikh
parent d7807b5ae3
commit 52df70a576
6 changed files with 47 additions and 1 deletions
@@ -0,0 +1,6 @@
// IS_APPLICABLE: false
fun test(x: String?) {
if (x <caret>!= null) {
x.length
}
}