This commit is contained in:
Dmitry Jemerov
2009-09-10 20:13:55 +04:00
parent f6b9382f4e
commit 40139d670a
49 changed files with 14 additions and 7 deletions
@@ -0,0 +1,6 @@
public class Extracted {
static class Inner {
void foo() {
}
}
}
@@ -0,0 +1,6 @@
class Test {
void bar() {
new Extracted.Inner().foo();
}
}