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

28 lines
290 B
Kotlin

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