Fixed accessing namespace private members from inner classes. Added test.

This commit is contained in:
Evgeny Gerashchenko
2012-06-19 22:47:26 +04:00
parent e8f15027e9
commit 9e727623c2
3 changed files with 13 additions and 3 deletions
@@ -0,0 +1,4 @@
private var x = "O"
private fun f() = "K"
fun box() = { x + f() }()