Light classes: getOwnInnerClasses() filters out inner classes with null names

#KT-13927 Fixed
This commit is contained in:
Pavel V. Talanov
2016-09-26 19:24:00 +03:00
parent 827b56e277
commit b275dacad8
4 changed files with 22 additions and 1 deletions

View File

@@ -0,0 +1,6 @@
public class InnerClassWithoutName {
public void uses() {
Test5 test5 = new Test5();
Test5.In1 in1 = test5.new In1();
}
}