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

11 lines
209 B
Kotlin
Vendored

// See also KT-6299
public open class Outer private constructor() {
companion object {
internal inline fun foo() = Outer()
}
}
fun box(): String {
val outer = Outer.foo()
return "OK"
}