d47cf315e7
[Tests] Add JvmVersionRequirementTest
22 lines
296 B
Kotlin
Vendored
22 lines
296 B
Kotlin
Vendored
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
|