Files
kotlin-fork/compiler/testData/codegen/box/defaultArguments/constructor/kt3060.kt
T
2020-03-10 15:19:34 +03:00

11 lines
166 B
Kotlin
Vendored

class Foo private constructor(val param: String = "OK") {
companion object {
val s = Foo()
}
}
fun box(): String {
Foo.s.param
return "OK"
}