01e5ee718f
#KT-6967 Fixed
11 lines
156 B
Kotlin
Vendored
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
|
|
}
|