Loading deeply nested static method correctly.

This commit is contained in:
Evgeny Gerashchenko
2013-03-21 23:35:21 +04:00
parent 81381a206c
commit 17cc055152
4 changed files with 56 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
package test;
public class DeeplyNestedStatic {
public static class Foo {
public static class Bar {
public static void method() {
}
}
}
}