summaryrefslogtreecommitdiff
path: root/test/files/neg/t4851/J2.java
blob: c3a7231315b896372e1fb0156617f0616864cdd0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
public class J2<T> {
  T x;
  
  public <T> J(T x) {
    this.x = x;
  }
  
  public String toString() {
    return "J2:" + x.getClass();
  }
}