Files
kotlin/idea/testData/debugger/insertBeforeExtractFunction/manyImports.kt.after
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

13 lines
108 B
Plaintext
Vendored

package foo
import a
import b
import a
import b
fun main(args: Array<String>) {
1 + 1
println()
}