Files
kotlin-fork/compiler/testData/diagnostics/tests/inlineClasses/inlineClassCannotImplementInterfaceByDelegation.fir.kt
T
2021-02-25 16:06:47 +01:00

9 lines
186 B
Kotlin
Vendored

// !LANGUAGE: +InlineClasses, -JvmInlineValueClasses
interface IFoo
object FooImpl : IFoo
inline class Test1(val x: Any) : IFoo by FooImpl
inline class Test2(val x: IFoo) : IFoo by x