Files
kotlin-fork/idea/testData/intentions/removeBraces/doWhileWithTwoStatements.kt
T
2014-07-10 15:05:18 +04:00

10 lines
158 B
Kotlin

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