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