Files
kotlin-fork/compiler/testData/diagnostics/tests/regressions/ea53340.kt
T

7 lines
89 B
Kotlin
Vendored

class A : Function0<Int> {
override fun invoke(): Int = 1
}
fun main() {
A()()
}