summaryrefslogtreecommitdiff
path: root/test/files/neg/t4851/J2.java
blob: 82954d94893a0b2925b85d91d1b412467ed7912d (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();
  }
}