direct inheritor search with javac indices: do not forget of classes declared in method body (when internal is A$1Name)

This commit is contained in:
Dmitry Batkovich
2016-10-12 19:19:42 +03:00
parent 7ffc9297a5
commit cfbaa260fe
3 changed files with 36 additions and 9 deletions

View File

@@ -0,0 +1,9 @@
class Test {
void m() {
class FooInsideMethodImpl extends Foo {}
}
}