Very simple test for resolving static members of java classes

This commit is contained in:
Pavel V. Talanov
2012-11-11 14:10:14 +04:00
parent 86cc1db609
commit 96b48aedfc
5 changed files with 78 additions and 0 deletions
@@ -0,0 +1,7 @@
package test;
public class Simple {
public static void bar() {}
public void foo() {}
}
@@ -0,0 +1,6 @@
namespace test
public open class test.Simple : java.lang.Object {
public final /*constructor*/ fun <init>(): test.Simple
public open fun foo(): jet.Tuple0
}
@@ -0,0 +1,3 @@
namespace Simple
public open fun bar(): jet.Tuple0