Files
kotlin-fork/compiler/testData/diagnostics/tests/enum/kt8972_cloneNotAllowed.fir.kt
T

8 lines
142 B
Kotlin
Vendored

// !WITH_NEW_INFERENCE
enum class E : Cloneable {
A;
override fun clone(): Any {
return super.<!AMBIGUITY!>clone<!>()
}
}