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,7 @@
fun box(): String {
object K {
val ok = "OK"
}
return K.ok
}