summaryrefslogblamecommitdiff
path: root/test/files/neg/t4851/J2.java
blob: a90f48e269689e38f1bb07c65f46dfeffb130716 (plain) (tree)
1
2
3
4
5
6
7
8
9
10

                    
 
                  

               
 


                                
 
public class J2<T> {
  T x;

  public J2(T x) {
    this.x = x;
  }

  public String toString() {
    return "J2:" + x.getClass();
  }
}