summaryrefslogtreecommitdiff
path: root/test/files/neg/t4851/J.java
blob: dbf8b8288e8c47a7cc531ef4da8e2848515d4826 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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();
  }
}