JS backend: don't use objects as definition place.

This commit is contained in:
Zalim Bashorov
2014-03-06 21:22:38 +04:00
parent 4c40f3971b
commit 43d9c383ff
3 changed files with 23 additions and 15 deletions
@@ -0,0 +1,10 @@
package foo
object A {
object B {
val lambda = { "OK" }
}
}
fun box() = A.B.lambda()