Files
kotlin-fork/idea/testData/formatter/secondaryCtorLineBreak.kt
T
Denis Zharkov 01e5ee718f Allow secondary constructors without body
#KT-6967 Fixed
2015-03-27 16:09:40 +03:00

27 lines
284 B
Kotlin
Vendored

class A {
constructor() {}
constructor() : this()
{}
constructor()
{
}
constructor() //eol comment
{
}
constructor():super(1,2,3) //eol comment
{}
constructor()
constructor() {
}
}
// SET_TRUE: LBRACE_ON_NEXT_LINE