Mark semicolons after nullable types redundant, despite of '!' after (KT-38240)

This commit is contained in:
Yan Zhulanow
2020-05-29 19:29:04 +09:00
parent 4cf83d9526
commit 741ebeb7b8
4 changed files with 31 additions and 8 deletions
@@ -0,0 +1,4 @@
fun test(a: Any) {
val b = a as Boolean?;<caret>
!b
}
@@ -0,0 +1,4 @@
fun test(a: Any) {
val b = a as Boolean?
!b
}