FIR checker: fix condition for property type mismatch on override

This commit is contained in:
Jinseong Jeon
2021-02-03 22:11:18 -08:00
committed by Dmitriy Novozhilov
parent 065d0c66ab
commit 266432a482
5 changed files with 21 additions and 21 deletions
@@ -1,9 +0,0 @@
interface Super {
var v: CharSequence
val v2: CharSequence
}
class Sub: Super {
override var v: String = "fail"
override val v2: String = "ok"
}
@@ -1,3 +1,4 @@
// FIR_IDENTICAL
interface Super {
var v: CharSequence
val v2: CharSequence