Files
kotlin-fork/compiler/testData/diagnostics/tests/dataClasses/implementTraitWhichHasFinalComponent1.kt
T
2015-05-12 19:43:17 +02:00

6 lines
118 B
Kotlin
Vendored

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