aboutsummaryrefslogblamecommitdiff
path: root/tests/invalid/pos/t6169/Exist.java
blob: dfc6b36b33e7fcb15198bb1a64b5842517da040c (plain) (tree)
1
2
3
4



                                                                     
public class Exist<T extends String> {
  // java helpfully re-interprets Exist<?> as Exist<? extends String>
  public Exist<?> foo() { throw new RuntimeException(); }
}