summaryrefslogtreecommitdiff
path: root/test/files/pos/t3642/Tuppel_1.java
blob: 07c715ee90d4ee6713dd192e2c313b6820ab2f55 (plain) (blame)
1
2
3
4
5
6
7
public class Tuppel_1<T> {
  private Tuppel_1(){}

  public static <A> Tuppel_1<A> get() {
    return new Tuppel_1<A>() {};
  }
}