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

8 lines
105 B
Kotlin

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