Properly load objects nested into class objects from Java

This commit is contained in:
Andrey Breslav
2013-06-07 17:47:40 +04:00
parent 56f040608a
commit 3e8031acbd
9 changed files with 76 additions and 11 deletions
@@ -0,0 +1,8 @@
package test
public class Outer {
public object Obj {
public val v: String = "val"
public fun f(): String = "fun"
}
}