Files
kotlin-fork/compiler/testData/diagnostics/tests/dataClasses/implementTraitWhichHasFinalComponent1.kt
T

7 lines
179 B
Kotlin
Vendored

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