Don't report when property is multi-line and action is MOVE

This commit is contained in:
Toshiaki Kameyama
2020-09-09 10:10:17 +09:00
committed by Dmitry Gridin
parent 4569b85a16
commit 5c011bc954
6 changed files with 10 additions and 17 deletions
@@ -0,0 +1,10 @@
fun test() = 42
fun foo() {
val <caret>a =
test()
when (a) {
1 -> 0
else -> 24
}
}