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

10 lines
159 B
Kotlin
Vendored

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