70c200d265
Fix IDE tests. Update quick fixes in IDE (TODO: review new inheritance-related diagnostics with regards to quick fixes)
9 lines
197 B
Kotlin
Vendored
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"
|
|
} |