You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
620 B
36 lines
620 B
4 years ago
|
package records;
|
||
|
|
||
|
public record TestRecordEmpty() {
|
||
|
public final String toString() {
|
||
|
return this.toString<invokedynamic>(this);
|
||
|
}
|
||
|
|
||
|
public final int hashCode() {
|
||
|
return this.hashCode<invokedynamic>(this);
|
||
|
}
|
||
|
|
||
|
public final boolean equals(Object o) {
|
||
|
return this.equals<invokedynamic>(this, o);// 3
|
||
|
}
|
||
|
}
|
||
|
|
||
|
class 'records/TestRecordEmpty' {
|
||
|
method 'toString ()Ljava/lang/String;' {
|
||
|
1 4
|
||
|
6 4
|
||
|
}
|
||
|
|
||
|
method 'hashCode ()I' {
|
||
|
1 8
|
||
|
6 8
|
||
|
}
|
||
|
|
||
|
method 'equals (Ljava/lang/Object;)Z' {
|
||
|
2 12
|
||
|
7 12
|
||
|
}
|
||
|
}
|
||
|
|
||
|
Lines mapping:
|
||
|
3 <-> 13
|