-
Bug
-
Resolution: Duplicate
-
P4
-
5.0
-
generic
-
solaris_8
The following program compiles withoug complaint from javac, even though the
final static variable b is being used before set by another static initializer.
When the comment is removed, the compiler correctly diagnoses the problem.
class Pos {
/*................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................*/ static final int a = b;
static final int b = Integer.parseInt("23");
int x = a + b;
}
final static variable b is being used before set by another static initializer.
When the comment is removed, the compiler correctly diagnoses the problem.
class Pos {
/*................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................*/ static final int a = b;
static final int b = Integer.parseInt("23");
int x = a + b;
}
- duplicates
-
JDK-4994049 Add support for accurate begin/end positions
-
- Closed
-
- relates to
-
JDK-4922730 diagnostic position overflow for lines over 1024 characters
-
- Closed
-