Files
kotlin-fork/idea/testData/intentions/addBraces/addBracesForDoWhile.kt
T

7 lines
94 B
Kotlin
Vendored

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