blob: 5fcdc27e41679624dd23efd3b53c23032791d234 [file]
// !LANGUAGE: +InlineClasses, -JvmInlineValueClasses
interface IFoo
object FooImpl : IFoo
inline class Test1(val x: Any) : <!VALUE_CLASS_CANNOT_IMPLEMENT_INTERFACE_BY_DELEGATION!>IFoo by FooImpl<!>
inline class Test2(val x: IFoo) : IFoo by x