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" "false"
fun foo(a: String) {
when (1) {
<caret>is Int -> { }
}
}