blob: 1ca7d80d642a2bbb3080e7e4cdee872c13835306 [file] [log] [blame]
// !LANGUAGE: +InlineClasses
interface IFoo {
fun foo(): String
}
inline 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()
}