Files
kotlin-fork/compiler/testData/diagnostics/tests/subtyping/kt3159.kt
T
Dmitry Petrov 70c200d265 Fix diagnostic messages for properties.
Fix IDE tests.
Update quick fixes in IDE
(TODO: review new inheritance-related diagnostics with regards to quick fixes)
2015-12-09 17:43:48 +03:00

9 lines
197 B
Kotlin
Vendored

interface Super {
var v: CharSequence
val v2: CharSequence
}
class Sub: Super {
override var v: <!VAR_TYPE_MISMATCH_ON_OVERRIDE!>String<!> = "fail"
override val v2: String = "ok"
}