Files
kotlin/compiler/testData/codegen/box/privateConstructors/inline.kt
2015-09-08 02:05:09 +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"
}