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

                
 


                      
 


                                                            
 



                               
public class J {
  Object x;

  public J(Object x) {
    this.x = x;
  }

  public J(int x1, int x2, int x3, int x4, int x5, int x6) {
    this.x = null;
  }

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