Supported loading named objects within named objects from compiled library.

This commit is contained in:
Evgeny Gerashchenko
2012-10-24 18:42:24 +04:00
parent 3ca976ee77
commit a71fa35187
5 changed files with 42 additions and 12 deletions
@@ -0,0 +1,8 @@
package test
public object Outer {
public object Obj {
public val v: String = "val"
public fun f(): String = "fun"
}
}