mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 15:53:55 +00:00
9 lines
162 B
Kotlin
Vendored
9 lines
162 B
Kotlin
Vendored
// !LANGUAGE: +InlineClasses
|
|
|
|
interface IFoo
|
|
|
|
object FooImpl : IFoo
|
|
|
|
inline class Test1(val x: Any) : IFoo by FooImpl
|
|
|
|
inline class Test2(val x: IFoo) : IFoo by x |