9 lines
140 B
Plaintext
Vendored
9 lines
140 B
Plaintext
Vendored
// "Create secondary constructor" "true"
|
|
open class Base()
|
|
|
|
class Creation {
|
|
constructor(f: Int)
|
|
|
|
constructor()
|
|
}
|
|
val v = Creation() |