| 6 | * public <��������> �������� ������(�������� .) |
| 7 | */ |
| 8 | public class Tool3 { |
| 9 | // public void print(String s) { |
| 10 | // System.out.println(s); |
| 11 | // } |
| 12 | // |
| 13 | // public void print(Integer i) { |
| 14 | // System.out.println(i); |
| 15 | // } |
| 16 | // |
| 17 | // public void print(Boolean b) { |
| 18 | // System.out.println(b); |
| 19 | // } |
| 20 | |
| 21 | public <BMW> void print(BMW bmw) { |
| 22 | System.out.println(bmw); |
| 23 | } |
| 24 | } |
nothing calls this directly
no outgoing calls
no test coverage detected