27f76630e6
#KT-1 In Progress
8 lines
116 B
Kotlin
8 lines
116 B
Kotlin
trait T {
|
|
fun getX(): Int
|
|
}
|
|
|
|
abstract class C : T {
|
|
val x: Int
|
|
<!ACCIDENTAL_OVERRIDE!>get()<!> = 1
|
|
} |