aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs161/pr237419/problem/SpecificService.java
blob: 9cd3b16795ce7e9a6dbdcfedf539788eb6607cf0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package problem;

public class SpecificService extends GenericService<Specific> {
  @Override
  protected Specific update(Specific current) {
    return null;
  }

  public static void main(String[] args) {
    new SpecificService();
  }
}