blob: 19acc29040de46440165f441ba228fbb0494a1b9 [file]
package test
interface A
interface B
context(A, B)
class ClassWithCR {
context(A, B)
val memberPropWithCR: Any?
get() = null
context(A, B)
fun memberFunWithCR() {}
}
context(A, B)
fun topLevelFunWithCR() {}
context(A, B)
val topLevelPropWithCR: Any?
get() = null