Fix resolve of inner and nested classes in JavaDescriptorResolver

This commit is contained in:
Pavel V. Talanov
2012-11-11 14:34:06 +04:00
parent 96b48aedfc
commit 737b246b01
10 changed files with 54 additions and 25 deletions
@@ -0,0 +1,9 @@
namespace test
public open class test.InnerClass : java.lang.Object {
public final /*constructor*/ fun <init>(): test.InnerClass
public open class test.InnerClass.Inner : java.lang.Object {
public final /*constructor*/ fun <init>(): test.InnerClass.Inner
public open fun foo(): jet.Tuple0
}
}