7bcd67068c
Also, enable some muted tests ^KTIJ-21343 Fixed
7 lines
94 B
Kotlin
Vendored
7 lines
94 B
Kotlin
Vendored
fun interface A {
|
|
operator fun invoke()
|
|
}
|
|
|
|
fun foo(param: A) {
|
|
param.invo<caret>ke()
|
|
} |