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

12 lines
215 B
Kotlin
Vendored

package someTest
public class Some private constructor(val v: String) {
companion object {
public fun init(v: String): Some {
return Some(v)
}
}
}
fun box() = Some.init("OK").v