| 4 | // Visit http://OnJava8.com for more book information. |
| 5 | |
| 6 | abstract class GenericWithCreate<T> { |
| 7 | final T element; |
| 8 | GenericWithCreate() { element = create(); } |
| 9 | abstract T create(); |
| 10 | } |
| 11 | |
| 12 | class X {} |
| 13 |
nothing calls this directly
no outgoing calls
no test coverage detected