// WITH_RUNTIME // DISABLE-ERRORS interface T { val foo: X } class U : T { } class V : T { } class Z : T by V() { } class W : T { override val foo: Boolean get() = throw UnsupportedOperationException() }