KT-5629 Quickfix to import extension method when arguments of non-extension method do not match
#KT-5629 fixed
This commit is contained in:
Vendored
+18
@@ -0,0 +1,18 @@
|
||||
package lib
|
||||
|
||||
class M
|
||||
|
||||
class Bar {
|
||||
fun buz(i: Int, m: M) {
|
||||
|
||||
}
|
||||
|
||||
fun buz(i: Int, l: Int) {
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
fun Bar.buz(s: String, i: String) {
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user