Files
kotlin-fork/idea/testData/intentions/removeBraces/removeBracesFromIfWithCommentedCode.kt
T
Nikolay Krasko a9f11d2c64 Always add new line space with space before to deal with KEEP_FIRST_COLUMN_COMMENT option
InvertIfConditionIntention, RemoveBracesIntention tests are affected

 #KT-4175 In Progress
2016-03-16 12:38:19 +03:00

10 lines
141 B
Kotlin
Vendored

fun <T> doSomething(a: T) {}
fun foo() {
if (true) <caret>{
// val a = 1
// var b = 1
doSomething("test")
}
}