Files
kotlin-fork/plugins/jvm-abi-gen/testData/compile/inlineClassWithPrivateConstructor/lib/lib.kt
T
2022-11-11 16:28:37 +00:00

9 lines
153 B
Kotlin
Vendored

package lib
@JvmInline
value class IC private constructor(val value: String) {
companion object {
fun of(value: String) = IC(value)
}
}