mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 00:21:47 +00:00
16 lines
283 B
Kotlin
Vendored
16 lines
283 B
Kotlin
Vendored
// !LANGUAGE: +InlineClasses
|
|
// IGNORE_BACKEND_FIR: JVM_IR
|
|
|
|
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()
|
|
} |