()
| 15 | } |
| 16 | |
| 17 | void demo(){ |
| 18 | |
| 19 | { |
| 20 | int b = 5; |
| 21 | } |
| 22 | |
| 23 | { |
| 24 | int b = 100; |
| 25 | } |
| 26 | |
| 27 | for(int i = 0; i < 5; i++) |
| 28 | { |
| 29 | System.out.println(i); |
| 30 | } |
| 31 | |
| 32 | for(int i = 0; i < 2; i++) |
| 33 | { |
| 34 | System.out.println(i); |
| 35 | } |
| 36 | |
| 37 | |
| 38 | } |
| 39 | } |
| 40 | |
| 41 | public class Main { |
nothing calls this directly
no outgoing calls
no test coverage detected