[FIR] Consider extension receiver type in conflicting members checker
This commit is contained in:
committed by
TeamCityServer
parent
cd09c8ba51
commit
a9882a86c0
Vendored
+11
@@ -0,0 +1,11 @@
|
||||
open class A {
|
||||
fun String.foo(from: String, to: String): Int {
|
||||
return 1
|
||||
}
|
||||
|
||||
fun <T> T.foo(from: String, to: String): Int {
|
||||
return 1
|
||||
}
|
||||
}
|
||||
|
||||
class B : A()
|
||||
Reference in New Issue
Block a user