Files
kotlin-fork/idea/testData/intentions/removeBraces/while.kt
T

8 lines
104 B
Kotlin
Vendored

fun <T> doSomething(a: T) {}
fun foo() {
while (true) {
doSomething("test")
<caret>}
}