Added test for EA-53340.

This commit is contained in:
Evgeny Gerashchenko
2014-10-10 16:23:36 +04:00
parent 7229df26ab
commit a759fc2454
3 changed files with 24 additions and 0 deletions
@@ -0,0 +1,7 @@
class A : Function0<Int> {
override fun invoke(): Int = 1
}
fun main(args : Array<String>) {
A()()
}