local classes without closures

This commit is contained in:
Alex Tkachman
2012-08-22 18:40:37 +03:00
parent cbde1e1e46
commit fb5bf2f8c6
16 changed files with 365 additions and 143 deletions
@@ -0,0 +1,8 @@
fun box(): String {
val x = "OK"
class Aaa {
val y = x
}
return Aaa().y
}