10 lines
111 B
Plaintext
Vendored
10 lines
111 B
Plaintext
Vendored
// "Create secondary constructor" "true"
|
|
|
|
class A {
|
|
constructor(i: Int)
|
|
|
|
}
|
|
|
|
fun test() {
|
|
val a = A(1)
|
|
} |