mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 00:21:32 +00:00
7 lines
97 B
Kotlin
Vendored
7 lines
97 B
Kotlin
Vendored
class A {
|
|
companion object {
|
|
fun invoke(i: Int) = i
|
|
}
|
|
}
|
|
|
|
fun test() = <caret>A(1) |