Move: Fix processing of implicit extension 'invoke' calls
Also fix bogus "unused import" inspection reported on such calls #KT-17496 Fixed
This commit is contained in:
+7
@@ -0,0 +1,7 @@
|
||||
package foo
|
||||
|
||||
class CrExtended
|
||||
|
||||
val funExtension = fun CrExtended.(): Unit {}
|
||||
|
||||
// WITH_RUNTIME
|
||||
@@ -0,0 +1,10 @@
|
||||
package bar
|
||||
|
||||
import foo.CrExtended
|
||||
import foo.funExtension
|
||||
|
||||
fun test() {
|
||||
CrExtended().funExtension()
|
||||
}
|
||||
|
||||
// WITH_RUNTIME
|
||||
Reference in New Issue
Block a user