Supported inlining constant properties.

This commit is contained in:
Evgeny Gerashchenko
2013-07-24 14:15:11 +04:00
parent b721b0211a
commit a13092e525
17 changed files with 205 additions and 40 deletions
@@ -0,0 +1,9 @@
class Class {
class object {
val p = 239
}
}
fun f() {
println(Class.<caret>p)
}