Mark semicolons after nullable types redundant, despite of '!' after (KT-38240)
This commit is contained in:
+4
@@ -0,0 +1,4 @@
|
||||
fun test(a: Any) {
|
||||
val b = a as Boolean?;<caret>
|
||||
!b
|
||||
}
|
||||
Vendored
+4
@@ -0,0 +1,4 @@
|
||||
fun test(a: Any) {
|
||||
val b = a as Boolean?
|
||||
!b
|
||||
}
|
||||
Reference in New Issue
Block a user