Files
kotlin-fork/idea/testData/formatter/SpaceAroundExtendColonInObjects.after.kt
T
2014-05-16 17:10:02 +04:00

35 lines
296 B
Kotlin

trait A
object Some1 :A {
}
object Some2 :A
object Some3
:
A
val a = object :A {}
val b = object :A {}
class B {
class object :A {
}
}
class C {
class object :
A {
}
}
// SET_TRUE: SPACE_BEFORE_EXTEND_COLON
// SET_FALSE: SPACE_AFTER_EXTEND_COLON