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

8 lines
106 B
Kotlin
Vendored

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