aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs161/pr237419/problem/GenericService.java
blob: 2a216e46ee5238966cff35b5810bfd603d9e0d0d (plain)
1
2
3
4
5
package problem;

public abstract class GenericService<T extends Generic<?>> {
  protected abstract T update(T current);
}