Fix accept() in light methods elements to avoid treating them as ClsElements

This commit is contained in:
Nikolay Krasko
2015-03-31 17:17:38 +03:00
parent 9d151d2ce8
commit 055be2850f
6 changed files with 39 additions and 0 deletions
@@ -0,0 +1,9 @@
package test;
import static test.kotlin.KotlinEnum.ENTRY;
public class EnumStaticImportInJava {
void other() {
ENTRY.foo();
}
}