Loading deeply nested static method correctly.

This commit is contained in:
Evgeny Gerashchenko
2013-03-21 23:35:21 +04:00
parent 81381a206c
commit 17cc055152
4 changed files with 56 additions and 0 deletions
@@ -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
}
}
}