| 12 | class X {} |
| 13 | |
| 14 | class XCreator extends GenericWithCreate<X> { |
| 15 | @Override X create() { return new X(); } |
| 16 | void f() { |
| 17 | System.out.println( |
| 18 | element.getClass().getSimpleName()); |
| 19 | } |
| 20 | } |
| 21 | |
| 22 | public class CreatorGeneric { |
| 23 | public static void main(String[] args) { |
nothing calls this directly
no outgoing calls
no test coverage detected