Loading deeply nested static method correctly.
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
package test;
|
||||
|
||||
public class DeeplyNestedStatic {
|
||||
public static class Foo {
|
||||
public static class Bar {
|
||||
public static void method() {
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,23 @@
|
||||
package test
|
||||
|
||||
public open class DeeplyNestedStatic : java.lang.Object {
|
||||
public constructor DeeplyNestedStatic()
|
||||
|
||||
public open class Foo : java.lang.Object {
|
||||
public constructor Foo()
|
||||
|
||||
public open class Bar : java.lang.Object {
|
||||
public constructor Bar()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
package DeeplyNestedStatic {
|
||||
|
||||
package Foo {
|
||||
|
||||
package Bar {
|
||||
public open fun method() : jet.Unit
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user