FULL PRODUCT VERSION :
java version "1.6.0_25"
Java(TM) SE Runtime Environment (build 1.6.0_25-b06)
Java HotSpot(TM) Server VM (build 20.0-b11, mixed mode)
ADDITIONAL OS VERSION INFORMATION :
Ubuntu 10.04 LTS
Linux pechenie-ws 2.6.32-31-generic #61-Ubuntu SMP Fri Apr 8 18:24:35 UTC 2011 i686 GNU/Linux
A DESCRIPTION OF THE PROBLEM :
Strange behaviour of java compile with the final modifiers.
STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
Try to compile class Test from the source code field.
Removing ANY (absolutely any: from Test, from Inner, or from while cycle) final modfier from the example causes testcase to compile well.
EXPECTED VERSUS ACTUAL BEHAVIOR :
EXPECTED -
Should compile well.
ACTUAL -
Compilation error: variable boo might have already been assigned
ERROR MESSAGES/STACK TRACES THAT OCCUR :
Compilation error: variable boo might have already been assigned
REPRODUCIBILITY :
This bug can be reproduced always.
---------- BEGIN SOURCE ----------
public class Test
{
final Inner boo;
public Test()
{
Inner too = new Inner( 0, 0 );
while( "a".equals( "b" ) )
{
final int aa = 1;
too = new Inner( 2, 3 );
}
boo = too;
}
class Inner
{
final int a;
final int b;
Inner( int a, int b )
{
this.a = a;
this.b = b;
}
}
}
---------- END SOURCE ----------
java version "1.6.0_25"
Java(TM) SE Runtime Environment (build 1.6.0_25-b06)
Java HotSpot(TM) Server VM (build 20.0-b11, mixed mode)
ADDITIONAL OS VERSION INFORMATION :
Ubuntu 10.04 LTS
Linux pechenie-ws 2.6.32-31-generic #61-Ubuntu SMP Fri Apr 8 18:24:35 UTC 2011 i686 GNU/Linux
A DESCRIPTION OF THE PROBLEM :
Strange behaviour of java compile with the final modifiers.
STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
Try to compile class Test from the source code field.
Removing ANY (absolutely any: from Test, from Inner, or from while cycle) final modfier from the example causes testcase to compile well.
EXPECTED VERSUS ACTUAL BEHAVIOR :
EXPECTED -
Should compile well.
ACTUAL -
Compilation error: variable boo might have already been assigned
ERROR MESSAGES/STACK TRACES THAT OCCUR :
Compilation error: variable boo might have already been assigned
REPRODUCIBILITY :
This bug can be reproduced always.
---------- BEGIN SOURCE ----------
public class Test
{
final Inner boo;
public Test()
{
Inner too = new Inner( 0, 0 );
while( "a".equals( "b" ) )
{
final int aa = 1;
too = new Inner( 2, 3 );
}
boo = too;
}
class Inner
{
final int a;
final int b;
Inner( int a, int b )
{
this.a = a;
this.b = b;
}
}
}
---------- END SOURCE ----------
- duplicates
-
JDK-7023703 Valid code doesn't compile
-
- Closed
-