62e856956c
The result of k1/k2 should be similar here, the differences should be fixed by KT-60764
15 lines
187 B
Kotlin
Vendored
15 lines
187 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
// !LANGUAGE: +ContextReceivers
|
|
|
|
context(A, B)
|
|
private open class ContextReceiversOnClass {
|
|
|
|
}
|
|
|
|
class A {
|
|
val valueA: Int = 10
|
|
}
|
|
|
|
class B {
|
|
val valueB: Int = 11
|
|
} |