106e1b8661
#KT-10591 Fixed
22 lines
292 B
Kotlin
Vendored
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 |