10 lines
103 B
Plaintext
Vendored
10 lines
103 B
Plaintext
Vendored
// "Create secondary constructor" "true"
|
|
|
|
open class A {
|
|
constructor(i: Int)
|
|
|
|
}
|
|
|
|
class B: A(1) {
|
|
|
|
} |