Files
kotlin-fork/compiler/testData/codegen/box/closures/kt3738.kt
T
Alexander Udalov a98434263b Add regression test for outdated issue
#KT-3738 Obsolete
2014-02-12 19:17:55 +04:00

20 lines
231 B
Kotlin

class A {
fun foo() {}
fun bar(f: A.() -> Unit = {}) {}
}
class B {
class D {
{
A().bar {
this.foo()
}
}
}
}
fun box(): String {
B.D()
return "OK"
}