// WITH_RUNTIME fun foo(a: IC): T = a.value as T @JvmInline value class IC(val value: String) fun box(): String { return foo(IC("O")) + "K" }