c5b1d205a2
#KT-10818 Fixed
11 lines
269 B
Plaintext
Vendored
11 lines
269 B
Plaintext
Vendored
// "Initialize with constructor parameter" "true"
|
|
open class RGrandAccessor(x: Int) {}
|
|
|
|
open class RAccessor : RGrandAccessor {
|
|
<caret>val f: Int
|
|
constructor(p: Boolean, f: Int) : super(1) {
|
|
this.f = f
|
|
}
|
|
|
|
constructor(p: String) : this(true, 0)
|
|
} |