Files
kotlin-fork/idea/testData/formatter/FormatFirstColumnCommentsBeforeDeclaration.kt
T
2018-01-16 17:54:29 +01:00

22 lines
292 B
Kotlin
Vendored

package format.test
class LineComments {
// Should not be formatted
// Format
// Format
fun test() {
}
}
class MultilineComments {
/*
* Should not be formatted
*/
/*
* Format
*/
fun test() {
}
}
// SET_TRUE: KEEP_FIRST_COLUMN_COMMENT