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