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

10 lines
157 B
Kotlin
Vendored

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