Files
kotlin-fork/idea/testData/formatter/SpaceAroundExtendColonInObjects.after.inv.kt
T
2015-05-13 16:13:13 +02:00

35 lines
307 B
Kotlin
Vendored

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