Skip to content

Commit 252ebe1

Browse files
author
Vicente Romero
committedSep 1, 2022
8293126: [lworld] follow-up for JDK-8293120
1 parent ffdca33 commit 252ebe1

File tree

2 files changed

+50
-2
lines changed

2 files changed

+50
-2
lines changed
 

‎src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Check.java

+7-1
Original file line numberDiff line numberDiff line change
@@ -1468,8 +1468,14 @@ else if ((sym.owner.flags_field & INTERFACE) != 0)
14681468
implicit |= VALUE_CLASS | FINAL;
14691469

14701470
// concrete value classes are implicitly final
1471-
if ((flags & (ABSTRACT | INTERFACE | VALUE_CLASS)) == VALUE_CLASS)
1471+
if ((flags & (ABSTRACT | INTERFACE | VALUE_CLASS)) == VALUE_CLASS) {
14721472
implicit |= FINAL;
1473+
if ((flags & NON_SEALED) != 0) {
1474+
// cant declare a final value class non-sealed
1475+
log.error(pos,
1476+
Errors.ModNotAllowedHere(asFlagSet(NON_SEALED)));
1477+
}
1478+
}
14731479

14741480
// TYPs can't be declared synchronized
14751481
mask &= ~SYNCHRONIZED;

‎test/langtools/tools/javac/valhalla/value-objects/ValueObjectCompilationTests.java

+43-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
* ValueObjectCompilationTests
2626
*
2727
* @test
28-
* @bug 8287136 8292630 8279368 8287136 8287770 8279840 8279672 8292753 8287763 8279901 8287767
28+
* @bug 8287136 8292630 8279368 8287136 8287770 8279840 8279672 8292753 8287763 8279901 8287767 8293183 8293120
2929
* @summary Negative compilation tests, and positive compilation (smoke) tests for Value Objects
3030
* @library /lib/combo /tools/lib
3131
* @modules
@@ -533,4 +533,46 @@ value interface VI {}
533533
class BIC implements VI {} // Error
534534
""");
535535
}
536+
537+
public void testInteractionWithSealedClasses() {
538+
assertOK(
539+
"""
540+
abstract sealed value class SC {}
541+
value class VC extends SC {}
542+
"""
543+
);assertOK(
544+
"""
545+
abstract sealed value interface SI {}
546+
value class VC implements SI {}
547+
"""
548+
);
549+
assertOK(
550+
"""
551+
abstract sealed identity class SC {}
552+
final identity class IC extends SC {}
553+
non-sealed identity class IC2 extends SC {}
554+
final identity class IC3 extends IC2 {}
555+
"""
556+
);
557+
assertOK(
558+
"""
559+
abstract sealed identity interface SI {}
560+
final identity class IC implements SI {}
561+
non-sealed identity class IC2 implements SI {}
562+
final identity class IC3 extends IC2 {}
563+
"""
564+
);
565+
assertFail("compiler.err.mod.not.allowed.here",
566+
"""
567+
abstract sealed value class SC {}
568+
non-sealed value class VC extends SC {}
569+
"""
570+
);
571+
assertFail("compiler.err.mod.not.allowed.here",
572+
"""
573+
sealed value interface SI {}
574+
non-sealed value class VC implements SI {}
575+
"""
576+
);
577+
}
536578
}

0 commit comments

Comments
 (0)
Please sign in to comment.