71a368e06e
^KTIJ-24107 Fixed ^KTIJ-24344 Fixed
9 lines
130 B
Kotlin
Vendored
9 lines
130 B
Kotlin
Vendored
class Foo private constructor() {
|
|
companion object {
|
|
operator fun invoke() {}
|
|
}
|
|
}
|
|
|
|
fun test() {
|
|
Fo<caret>o()
|
|
} |