Files
kotlin-fork/idea/testData/formatter/SuperListIndent.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

21 lines
148 B
Kotlin
Vendored

interface Foo
class Bar
: Foo {
}
class Ob
: Foo
class C {
companion object
: Foo {
}
}
class Unfinished1
:
class Unfinished2
: {
}