Files
kotlin-fork/compiler/testData/codegen/box/compileKotlinAgainstKotlin/inlineClasses/privateConstructor.kt
T
2021-03-22 21:57:07 +01:00

13 lines
215 B
Kotlin
Vendored

// WITH_RUNTIME
// MODULE: lib
// FILE: A.kt
inline class A private constructor(val value: String) {
constructor(c: Char) : this(c + "K")
}
// MODULE: main(lib)
// FILE: B.kt
fun box(): String = A('O').value