7 lines
109 B
Kotlin
Vendored
7 lines
109 B
Kotlin
Vendored
class A : Function0<Int> {
|
|
override fun invoke(): Int = 1
|
|
}
|
|
|
|
fun main(args : Array<String>) {
|
|
A()()
|
|
} |