8 lines
206 B
Kotlin
Vendored
8 lines
206 B
Kotlin
Vendored
// CHECK_BYTECODE_LISTING
|
|
// FIR_IDENTICAL
|
|
// LANGUAGE: -JvmInlineValueClasses, +GenericInlineClassParameter
|
|
// IGNORE_BACKED: JVM
|
|
|
|
inline class ICAny<T>(val value: T)
|
|
|
|
fun box(): String = ICAny("OK").value |