Properly load objects nested into class objects from Java
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
package test
|
||||
|
||||
public class Outer {
|
||||
public object Obj {
|
||||
public val v: String = "val"
|
||||
public fun f(): String = "fun"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
package test
|
||||
|
||||
public final class Outer {
|
||||
/*primary*/ public constructor Outer()
|
||||
public final val Obj: test.Outer.Obj
|
||||
|
||||
public object Obj {
|
||||
/*primary*/ private constructor Obj()
|
||||
public final val v: jet.String
|
||||
public final fun <get-v>(): jet.String
|
||||
public final fun f(): jet.String
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user