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

33 lines
306 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