8 lines
116 B
Kotlin
Vendored
8 lines
116 B
Kotlin
Vendored
fun test() {
|
|
class Test(val v: Int)
|
|
|
|
operator fun Test.invoke(): Unit = Unit
|
|
|
|
Test(1).i<caret>nvoke()
|
|
}
|