missing error report on incompatible declaration
===
open class Aaaa() {
fun bb() = 1
}
class Bbbb() : Aaaa() {
fun <T> bb() = 1
}
===
This commit is contained in:
+7
@@ -0,0 +1,7 @@
|
||||
open class Aaa() {
|
||||
fun foo() = 1
|
||||
}
|
||||
|
||||
open class Bbb() : Aaa() {
|
||||
<!CONFLICTING_OVERLOADS!>fun <T> foo()<!> = 2
|
||||
}
|
||||
Reference in New Issue
Block a user