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



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