7 lines
97 B
Kotlin
7 lines
97 B
Kotlin
class A {
|
|
companion object {
|
|
fun invoke(i: Int) = i
|
|
}
|
|
}
|
|
|
|
fun test() = A<caret>(1) |