rationalize static method calls after pull up

This commit is contained in:
anna
2011-09-02 19:25:58 +02:00
parent d390856be1
commit b01b21b30f
4 changed files with 46 additions and 5 deletions
@@ -0,0 +1,11 @@
class Foo {
public static void foo(){}
}
class FooImpl extends Foo {
}
class U {
public static void main(String[] args) {
Foo.foo();
}
}