|
25 | 25 | * ValueObjectCompilationTests
|
26 | 26 | *
|
27 | 27 | * @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 |
29 | 29 | * @summary Negative compilation tests, and positive compilation (smoke) tests for Value Objects
|
30 | 30 | * @library /lib/combo /tools/lib
|
31 | 31 | * @modules
|
@@ -533,4 +533,46 @@ value interface VI {}
|
533 | 533 | class BIC implements VI {} // Error
|
534 | 534 | """);
|
535 | 535 | }
|
| 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 | + } |
536 | 578 | }
|
0 commit comments