Skip to content

Commit 7b023a3

Browse files
committedSep 3, 2021
8273257: jshell doesn't compile a sealed hierarchy with a sealed interface and a non-sealed leaf
Reviewed-by: vromero
1 parent f17ee0c commit 7b023a3

File tree

3 files changed

+45
-5
lines changed

3 files changed

+45
-5
lines changed
 

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

+10-3
Original file line numberDiff line numberDiff line change
@@ -5300,9 +5300,16 @@ void attribClass(ClassSymbol c) throws CompletionFailure {
53005300

53015301
if (sealedSupers.isEmpty()) {
53025302
if ((c.flags_field & Flags.NON_SEALED) != 0) {
5303-
boolean hasErrorSuper = types.directSupertypes(c.type)
5304-
.stream()
5305-
.anyMatch(s -> s.tsym.kind == Kind.ERR);
5303+
boolean hasErrorSuper = false;
5304+
5305+
hasErrorSuper |= types.directSupertypes(c.type)
5306+
.stream()
5307+
.anyMatch(s -> s.tsym.kind == Kind.ERR);
5308+
5309+
ClassType ct = (ClassType) c.type;
5310+
5311+
hasErrorSuper |= !ct.isCompound() && ct.interfaces_field != ct.all_interfaces_field;
5312+
53065313
if (!hasErrorSuper) {
53075314
log.error(TreeInfo.diagnosticPositionFor(c, env.tree), Errors.NonSealedWithNoSealedSupertype(c));
53085315
}

‎test/langtools/jdk/jshell/SealedClassesTest.java

+22-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
/*
2525
* @test
26-
* @bug 8246353
26+
* @bug 8246353 8273257
2727
* @summary Test sealed class in jshell
2828
* @modules jdk.jshell
2929
* @build KullaTesting TestingInputStream ExpectedDiagnostic
@@ -53,6 +53,16 @@ public void testSealed() {
5353
assertEval("new I()");
5454
}
5555

56+
public void testInterface() {
57+
TypeDeclSnippet base = classKey(
58+
assertEval("sealed interface I permits C {}",
59+
ste(MAIN_SNIPPET, Status.NONEXISTENT, Status.RECOVERABLE_NOT_DEFINED, false, null)));
60+
assertEval("final class C implements I {}",
61+
added(VALID),
62+
ste(base, Status.RECOVERABLE_NOT_DEFINED, Status.VALID, true, null));
63+
assertEval("new C()");
64+
}
65+
5666
public void testNonSealed() {
5767
TypeDeclSnippet base = classKey(
5868
assertEval("sealed class B permits I {}",
@@ -63,4 +73,15 @@ public void testNonSealed() {
6373
assertEval("class I2 extends I {}");
6474
assertEval("new I2()");
6575
}
76+
77+
public void testNonSealedInterface() {
78+
TypeDeclSnippet base = classKey(
79+
assertEval("sealed interface B permits C {}",
80+
ste(MAIN_SNIPPET, Status.NONEXISTENT, Status.RECOVERABLE_NOT_DEFINED, false, null)));
81+
assertEval("non-sealed class C implements B {}",
82+
added(VALID),
83+
ste(base, Status.RECOVERABLE_NOT_DEFINED, Status.VALID, true, null));
84+
assertEval("class C2 extends C {}");
85+
assertEval("new C2()");
86+
}
6687
}

‎test/langtools/tools/javac/sealed/SealedCompilationTests.java

+13-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
* SealedCompilationTests
2626
*
2727
* @test
28-
* @bug 8246353
28+
* @bug 8246353 8273257
2929
* @summary Negative compilation tests, and positive compilation (smoke) tests for sealed classes
3030
* @library /lib/combo /tools/lib
3131
* @modules
@@ -727,6 +727,18 @@ non-sealed class C extends Undefined {}
727727
""");
728728
}
729729

730+
public void testNonSealedErroneousSuperInterface() {
731+
assertFail("compiler.err.cant.resolve",
732+
d -> {
733+
if (diags.keys().size() != 1) {
734+
fail("Unexpected errors: " + diags.toString());
735+
}
736+
},
737+
"""
738+
non-sealed class C implements Undefined {}
739+
""");
740+
}
741+
730742
public void testIllFormedNonSealed() {
731743
for (String s : List.of(
732744
"""

0 commit comments

Comments
 (0)
Please sign in to comment.