mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
18 lines
521 B
Java
18 lines
521 B
Java
// "Copy 'i' to final temp variable" "true-preview"
|
|
class ParamTypeBug {
|
|
private static String strings[] = new String[]{ "a", "b", "c" };
|
|
|
|
public static void main(final String ... args){
|
|
if (args.length == 1){
|
|
for(int i = 0; i < strings.length; i++) {
|
|
final int finalI = i;
|
|
new Thread(){
|
|
public void run(){
|
|
new String(strings[finalI]);
|
|
}
|
|
}.start();
|
|
}
|
|
}
|
|
}
|
|
}
|