blob: e59c27119e29f86728f11ee4e102f3280ebd7d87 [file]
// WITH_STDLIB
// WORKS_WHEN_VALUE_CLASS
interface IFoo {
fun foo(): String
}
OPTIONAL_JVM_INLINE_ANNOTATION
value class IC(val x: String) : IFoo {
private fun privateFun() = x
override fun foo() = privateFun()
}
fun box(): String {
val x: IFoo = IC("OK")
return x.foo()
}