FIR checker: fix positions of type mismatch on overrides
To handle implicit return types, those should be reported on declarations with return type positioning strategy, instead of return type itself.
This commit is contained in:
committed by
Dmitriy Novozhilov
parent
571c4ce398
commit
b48835f3ce
-23
@@ -1,23 +0,0 @@
|
||||
interface Foo {
|
||||
val foo: suspend () -> Unit
|
||||
}
|
||||
|
||||
interface Bar<T> {
|
||||
val bar: T
|
||||
}
|
||||
|
||||
class Test1 : Foo {
|
||||
override val foo = <!PROPERTY_TYPE_MISMATCH_ON_OVERRIDE!>{}<!>
|
||||
}
|
||||
|
||||
class Test2 : Foo {
|
||||
override val foo: suspend () -> Unit = {}
|
||||
}
|
||||
|
||||
class Test3 : Bar<suspend () -> Unit> {
|
||||
override val bar = <!PROPERTY_TYPE_MISMATCH_ON_OVERRIDE!>{}<!>
|
||||
}
|
||||
|
||||
class Test4 : Bar<suspend () -> Unit> {
|
||||
override val bar: suspend () -> Unit = {}
|
||||
}
|
||||
+1
@@ -1,3 +1,4 @@
|
||||
// FIR_IDENTICAL
|
||||
interface Foo {
|
||||
val foo: suspend () -> Unit
|
||||
}
|
||||
|
||||
Vendored
-7
@@ -1,7 +0,0 @@
|
||||
data class A(val x: Int) {
|
||||
fun toArray(): IntArray =
|
||||
intArrayOf(x)
|
||||
|
||||
override fun toString() =
|
||||
toArray().takeWhile { it != -1 } // .joinToString()
|
||||
}
|
||||
+1
@@ -1,3 +1,4 @@
|
||||
// FIR_IDENTICAL
|
||||
data class A(val x: Int) {
|
||||
fun toArray(): IntArray =
|
||||
intArrayOf(x)
|
||||
|
||||
Reference in New Issue
Block a user