value class Node {
Node node;
}
var n1 = new Node(null);
var n2 = new Node(n1);
n1 == n2;
run with -Xcomp, result in illegal hardware instruction
- duplicates
-
JDK-8282616 [lworld] C2 does not properly handle circular .ref or value class fields
-
- Resolved
-
- relates to
-
JDK-8293321 [lworld] substitutability test shall support value class with cyclic membership
-
- Resolved
-