Files
kotlin/compiler/testData/diagnostics/tests/dataClasses/implementTraitWhichHasFinalComponent1.kt

6 lines
162 B
Kotlin
Vendored

interface T {
<!WRONG_MODIFIER_CONTAINING_DECLARATION!>final<!> fun component1(): Int = 42
}
<!DATA_CLASS_OVERRIDE_CONFLICT!>data<!> class A(val x: Int) : T