2007-12-01 00:00:00 +00:00
|
|
|
/*
|
2014-10-01 21:15:40 +00:00
|
|
|
* @test /nodynamiccopyright/
|
2007-12-01 00:00:00 +00:00
|
|
|
* @bug 6306967
|
|
|
|
* @summary Variable x is used before initialized
|
|
|
|
* @author Wei Tao
|
2014-10-01 21:15:40 +00:00
|
|
|
* @compile/fail/ref=T6306967.out -XDrawDiagnostics T6306967.java
|
2007-12-01 00:00:00 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
public class T6306967 {
|
2023-01-17 04:43:40 +00:00
|
|
|
public static void meth() {
|
2007-12-01 00:00:00 +00:00
|
|
|
final int x;
|
|
|
|
while(true) {
|
|
|
|
if (true) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
x = 1;
|
|
|
|
}
|
|
|
|
System.out.println(x);
|
|
|
|
}
|
|
|
|
}
|