306edef23c
#KT-5010 Fixed
8 lines
97 B
Kotlin
Vendored
8 lines
97 B
Kotlin
Vendored
// "Remove redundant semicolon" "true"
|
|
fun foo() {
|
|
a();<caret>
|
|
b()
|
|
}
|
|
|
|
fun a(){}
|
|
fun b(){} |