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