// FIR_IDENTICAL // !LANGUAGE: +ContextReceivers interface A { fun a(): Int } interface B { fun b(): Int } context(A, B) val c get() = a() + b()