12 lines
198 B
Plaintext
Vendored
12 lines
198 B
Plaintext
Vendored
// "Create secondary constructor" "true"
|
|
|
|
open class A {
|
|
constructor(i: Int) {
|
|
//To change body of created constructors use File | Settings | File Templates.
|
|
}
|
|
|
|
}
|
|
|
|
class B: A(1) {
|
|
|
|
} |