9 lines
165 B
Plaintext
Vendored
9 lines
165 B
Plaintext
Vendored
// "Create secondary constructor" "true"
|
|
|
|
open class A {
|
|
constructor(x: Int, y: Int)
|
|
constructor(x: Int, y: String)
|
|
constructor(i: Int)
|
|
}
|
|
|
|
class B : A(1) |