blob: 9b8f88cb7265fda6135cbfa459d00102dd95d278 [file] [log] [blame]
package records;
@Deprecated
public record Point(@MyAnnot int comp_,
@MyAnnot2 int comp2_,
@MyAnnot3 int comp3_,
@MyAnnot4 int comp4_,
@MyAnnot5 int comp5_) {
public Point {}
public boolean equals(Object o) {
return false;
}
public int hashCode() {
return -1;
}
public String toString() {
return null;
}
}