Add quick-fix for USELESS_IS_CHECK #KT-18965 Fixed

This commit is contained in:
Andrius Semionovas
2017-07-12 20:39:49 +03:00
committed by Mikhail Glukhikh
parent 88fa7c2952
commit e0aca97f9f
8 changed files with 96 additions and 0 deletions
@@ -0,0 +1,6 @@
// "Remove useless is check" "true"
fun foo(a: String) {
if (<caret>1 is Int) {
}
}