mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 00:21:32 +00:00
16 lines
225 B
Kotlin
Vendored
16 lines
225 B
Kotlin
Vendored
package test
|
|
|
|
class A {
|
|
operator fun invoke(i: Int) {
|
|
}
|
|
}
|
|
|
|
fun main(args: Array<String>) {
|
|
val a = A()
|
|
a(<caret>)
|
|
}
|
|
|
|
/*
|
|
Text: (<highlight>i: Int</highlight>), Disabled: false, Strikeout: false, Green: true
|
|
*/
|