| 1 | public class StaticCall { |
| 2 | |
| 3 | public static void main(String[] args) { |
| 4 | foo(); |
| 5 | A.baz(); |
| 6 | } |
| 7 | |
| 8 | static void foo() { |
| 9 | bar(); |
| 10 | } |
| 11 | |
| 12 | static void bar() { |
| 13 | } |
| 14 | } |
| 15 | |
| 16 | class A { |
| 17 | static void baz() { |
nothing calls this directly
no outgoing calls
no test coverage detected