Files
kotlin-fork/compiler/testData/diagnostics/tests/dataClasses/implementTraitWhichHasFinalComponent1.kt
T
2015-09-29 13:05:08 +03:00

6 lines
167 B
Kotlin
Vendored

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