Skip to content

Commit 0f34008

Browse files
author
Vicente Romero
committedAug 12, 2023
8314181: [lw5] the check for illegal circularity should only be done if value classes are available
1 parent ad09510 commit 0f34008

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/jdk.compiler/share/classes/com/sun/tools/javac/jvm/ClassReader.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -3178,7 +3178,7 @@ public void complete(Symbol sym) throws CompletionFailure {
31783178

31793179
// A value class cannot contain a non-nullable instance field of its own type either directly or indirectly.
31803180
void checkNonCyclicMembership(ClassSymbol csym) {
3181-
if (!csym.type.hasImplicitConstructor()) {
3181+
if (!allowValueClasses || !csym.type.hasImplicitConstructor()) {
31823182
// nothing to see here
31833183
return;
31843184
}

0 commit comments

Comments
 (0)
Please sign in to comment.