// FIR_IDENTICAL // !LANGUAGE: +ContextReceivers class A { fun h1() {} } class B { fun h2() {} } fun B.foo() { h1() h2() } context(A) fun B.bar() { h1() h2() }