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