Do not try to load Java classes from incorrect packages

#KT-11474 Fixed

(cherry picked from commit bfb3b38ebc)
This commit is contained in:
Alexander Udalov
2017-05-16 14:23:33 +03:00
parent 5e5c280323
commit ffafe89d8c
6 changed files with 32 additions and 7 deletions

View File

@@ -0,0 +1,9 @@
package foo;
public class A {
public Nested nested() {
return new Nested();
}
public static class Nested {}
}