05d486d55a
In 154e53c701 update of
extensionReceiverArgument in resolvedCall was accidentally moved into
language feature dependant block
15 lines
222 B
Kotlin
Vendored
15 lines
222 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
// SKIP_TXT
|
|
// WITH_STDLIB
|
|
// LANGUAGE: +NoBuilderInferenceWithoutAnnotationRestriction
|
|
|
|
class A
|
|
class B
|
|
|
|
var B.foo: Boolean
|
|
get() = true
|
|
set(value) {}
|
|
|
|
private fun A.bar(b: B) {
|
|
b.foo = true
|
|
} |