blob: 87e3ca7473e9c65b298008d692096a7c45f04034 [file]
// RUN_PIPELINE_TILL: FRONTEND
// LANGUAGE: +InlineClasses
// DIAGNOSTICS: -INLINE_CLASS_DEPRECATED
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
/* GENERATED_FIR_TAGS: classDeclaration, inheritanceDelegation, interfaceDeclaration, objectDeclaration,
primaryConstructor, propertyDeclaration */