Don't consider a directory to be a package if there's a .java or .class file with the same name in its parent directory

#KT-12664 Fixed
This commit is contained in:
Dmitry Jemerov
2016-11-17 15:44:57 +01:00
parent 7dbcbeb794
commit 5a533a521b
7 changed files with 39 additions and 6 deletions
@@ -0,0 +1,7 @@
package test;
public class Foo {
public interface Bar {
}
}
@@ -0,0 +1,3 @@
import test.Foo.Bar
val f: Bar? = null