| 1 | public class Main { |
| 2 | public static void main(String[] args) { |
| 3 | int x = 60, y = 90; |
| 4 | if (y % x == 0) |
| 5 | System.out.println("Good"); |
| 6 | else |
| 7 | System.out.println("Bad"); |
| 8 | } |
| 9 | } |
nothing calls this directly
no outgoing calls
no test coverage detected