| 4 | // Visit http://OnJava8.com for more book information. |
| 5 | |
| 6 | class GenericBase<T> { |
| 7 | private T element; |
| 8 | public void set(T arg) { element = arg; } |
| 9 | public T get() { return element; } |
| 10 | } |
| 11 | |
| 12 | class Derived1<T> extends GenericBase<T> {} |
| 13 |
nothing calls this directly
no outgoing calls
no test coverage detected