-
Bug
-
Resolution: Not an Issue
-
P4
-
None
-
1.3.0
-
x86
-
windows_nt
Name: tb29552 Date: 01/04/2001
/*
java version "1.3.0"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.0-C)
Java HotSpot(TM) Client VM (build 1.3.0-C, mixed mode)
Compiler has no problem with the simple variables "x" and "s" but
reports an error over the array variables "intargs" and "args"
while compiling this class:
Outer.java:23: inner classes cannot have static declarations
private static final int[] intargs = { 1, 2 };
^
Outer.java:24: inner classes cannot have static declarations
private static final String[] args = {"foo", "bar"};
^
2 errors
*/
public class Outer {
class Inner {
private static final int x = 3;
private static final String s = "foo";
private static final int[] intargs = { 1, 2 };
private static final String[] args = {"foo", "bar"};
}
}
(Review ID: 113834)
======================================================================
- relates to
-
JDK-4279339 Static members incorrectly permitted in anonymous classes
-
- Resolved
-