aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs166/pr290087/InterfaceParent.java
blob: 4c299db4810edf632ca87b7960851654dd4a82fb (plain)
1
2
3
4
5
6
public class InterfaceParent<T extends Interface> extends GenericParent<T> {
  public InterfaceParent(Class<? extends T> c) {
    super(c);
  }
}