unused: search for main in inner classes (IDEA-178721)

This commit is contained in:
Anna Kozlova
2017-09-11 19:02:58 +03:00
parent 25a1f5b3f3
commit e129868d33
3 changed files with 21 additions and 1 deletions
@@ -0,0 +1,7 @@
class Test {
static class NestedTest {
public static void main(String[] args) {
new Test();
}
}
}