7 lines
128 B
Kotlin
Vendored
7 lines
128 B
Kotlin
Vendored
// "Create secondary constructor" "true"
|
|
open class Base()
|
|
|
|
class Creation {
|
|
constructor(f: Int)
|
|
}
|
|
val v = Creation(<caret>) |