Files
kotlin-fork/compiler/testData/diagnostics/tests/regressions/ea53340.kt
T
Evgeny Gerashchenko a759fc2454 Added test for EA-53340.
2014-10-15 11:50:59 +04:00

7 lines
109 B
Kotlin
Vendored

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