Files
kotlin-fork/idea/testData/formatter/SpaceAroundExtendColonInObjects.after.inv.kt
T
Nikolay Krasko 6a72cebe88 Add indent before colon of super types list on new line (KT-13981, KT-5117)
#KT-13981 Fixed
 #KT-5117 Fixed

(cherry picked from commit dfea3af)
2016-10-17 15:16:48 +03:00

35 lines
311 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