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

11 lines
156 B
Kotlin
Vendored

class A {
constructor()
fun foo() = 1
public constructor()
val x = 2
constructor(): this()
constructor(): super(3)
val x = 4
}