6a72cebe88
#KT-13981 Fixed #KT-5117 Fixed (cherry picked from commit dfea3af)
35 lines
311 B
Kotlin
Vendored
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
|