Skip to content

Commit 6fa25cc

Browse files
archiecobbsVicente Romero
authored and
Vicente Romero
committedMar 23, 2023
8184444: The compiler error "variable not initialized in the default constructor" is not apt in case of static final variables
Reviewed-by: vromero
1 parent 4b8f7db commit 6fa25cc

File tree

5 files changed

+23
-4
lines changed

5 files changed

+23
-4
lines changed
 

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

+10-2
Original file line numberDiff line numberDiff line change
@@ -2232,6 +2232,15 @@ public void visitClassDef(JCClassDecl tree) {
22322232
}
22332233
}
22342234

2235+
// verify all static final fields got initailized
2236+
for (int i = firstadr; i < nextadr; i++) {
2237+
JCVariableDecl vardecl = vardecls[i];
2238+
VarSymbol var = vardecl.sym;
2239+
if (var.owner == classDef.sym && var.isStatic()) {
2240+
checkInit(TreeInfo.diagnosticPositionFor(var, vardecl), var);
2241+
}
2242+
}
2243+
22352244
// define all the instance fields
22362245
for (List<JCTree> l = tree.defs; l.nonEmpty(); l = l.tail) {
22372246
if (l.head.hasTag(VARDEF)) {
@@ -2320,7 +2329,7 @@ public void visitMethodDef(JCMethodDecl tree) {
23202329
for (int i = firstadr; i < nextadr; i++) {
23212330
JCVariableDecl vardecl = vardecls[i];
23222331
VarSymbol var = vardecl.sym;
2323-
if (var.owner == classDef.sym) {
2332+
if (var.owner == classDef.sym && !var.isStatic()) {
23242333
// choose the diagnostic position based on whether
23252334
// the ctor is default(synthesized) or not
23262335
if (isSynthesized && !isCompactOrGeneratedRecordConstructor) {
@@ -2329,7 +2338,6 @@ public void visitMethodDef(JCMethodDecl tree) {
23292338
} else if (isCompactOrGeneratedRecordConstructor) {
23302339
boolean isInstanceRecordField = var.enclClass().isRecord() &&
23312340
(var.flags_field & (Flags.PRIVATE | Flags.FINAL | Flags.GENERATED_MEMBER | Flags.RECORD)) != 0 &&
2332-
!var.isStatic() &&
23332341
var.owner.kind == TYP;
23342342
if (isInstanceRecordField) {
23352343
boolean notInitialized = !inits.isMember(var.adr);
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
/*
2+
* @test /nodynamiccopyright/
3+
* @bug 8184444
4+
* @summary Report unintialized static final variables
5+
* @compile/fail/ref=StaticFinalInit.out -XDrawDiagnostics StaticFinalInit.java
6+
*/
7+
class StaticFinalInit {
8+
static final int i;
9+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
StaticFinalInit.java:8:22: compiler.err.var.might.not.have.been.initialized: i
2+
1 error
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
CompileTimeErrorForNonAssignedStaticFieldTest.java:14:5: compiler.err.var.might.not.have.been.initialized: i
1+
CompileTimeErrorForNonAssignedStaticFieldTest.java:9:30: compiler.err.var.might.not.have.been.initialized: i
22
1 error

‎test/langtools/tools/javac/positions/TreeEndPosTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ static void testFinalVariableWithDefaultConstructor() throws IOException {
147147

148148
static void testFinalVariableWithConstructor() throws IOException {
149149
compile(JavaSource.createJavaSource("public Bug (){} private static final String Foo; public void bar() { }",
150-
"{}"));
150+
"private static final String Foo;"));
151151
}
152152

153153
static void testWholeTextSpan() throws IOException {

0 commit comments

Comments
 (0)
Please sign in to comment.