Add tests for lookups to declarations form Java

This commit is contained in:
Zalim Bashorov
2015-10-29 15:28:15 +03:00
parent 519172f182
commit 4cb5398c04
8 changed files with 82 additions and 1 deletions
@@ -0,0 +1,16 @@
package bar;
import foo.I;
public class C implements I {
@Override
public void ifunc() {}
public int field = 1;
public void func() {}
public class B {}
public static String sfield = "";
public static void sfunc() {}
public static class S {}
}