[K1] Remove compiler version requirements for context receivers in metadata.

This commit is contained in:
Mads Ager
2023-03-10 11:37:39 +01:00
committed by Space Cloud
parent ed84fbd8a6
commit 683220a32c
5 changed files with 14 additions and 56 deletions
@@ -1,21 +0,0 @@
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