d17044515f
Common metadata compiler now reports compilation errors. Disable tests that are not yet supported or should be skipped as JVM-specific. KTIJ-28668
18 lines
277 B
Kotlin
Vendored
18 lines
277 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
// !LANGUAGE: +ContextReceivers
|
|
/* Unsupported arguments in test metadata compiler */
|
|
// KNM_K2_IGNORE
|
|
// KNM_FE10_IGNORE
|
|
|
|
context(A, B)
|
|
private open class ContextReceiversOnClass {
|
|
|
|
}
|
|
|
|
class A {
|
|
val valueA: Int = 10
|
|
}
|
|
|
|
class B {
|
|
val valueB: Int = 11
|
|
} |