blob: b822472fe7a5933543e4ecae2539540a9e6b19e8 [file]
open class Foo() {
}
class Barrr() : <!DELEGATION_NOT_TO_INTERFACE, SUPERTYPE_NOT_INITIALIZED!>Foo<!> by Foo() {}
interface T {}
class Br(t : T) : T by t {}
<!WRONG_MODIFIER_TARGET!>open<!> enum class EN() {
A
}
class Test2(e : EN) : <!DELEGATION_NOT_TO_INTERFACE!>EN<!> by e {}