-
Bug
-
Resolution: Won't Fix
-
P4
-
None
-
1.2.0, 1.2.2
-
generic, x86
-
generic, solaris_2.5, solaris_2.5.1, windows_nt
the following compiles under jdk1.1 and jdk1.1.1:
class T
{
T()
{
System.out.super();
}
}
the generated bytecode is equivalent to
class T
{
T()
{
super();
}
}
class T
{
T()
{
System.out.super();
}
}
the generated bytecode is equivalent to
class T
{
T()
{
super();
}
}
- duplicates
-
JDK-4181748 JCK test icls07191m12 is accepted, but shouldn't be
-
- Closed
-
-
JDK-4185026 Generally "Primary" in "Primary.staticSomething" should be evaluated.
-
- Closed
-
-
JDK-4254867 compiler fails to reject incorrect program, generates bogus code
-
- Closed
-
-
JDK-4075258 Misuse of super permitted for inner classes
-
- Closed
-