blob: 7097e762fc3aaf0270a75e183fcd711b91f000a8 [file]
// LANGUAGE: +ContextReceivers
annotation class MyAnnotation
context(A, B)
@MyAnnotation
private open class ContextReceiversOnClass {
}
class A {
val valueA: Int = 10
}
class B {
val valueB: Int = 11
}