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

8 lines
104 B
Kotlin
Vendored

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