mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-28 15:20:54 +07:00
20 lines
311 B
Java
20 lines
311 B
Java
// "Transform 'i' into final one element array" "true-preview"
|
|
import java.io.*;
|
|
|
|
class aa {
|
|
void f() {
|
|
final int[] i = {9};
|
|
new Runnable() {
|
|
public void run() {
|
|
int p = i[0];
|
|
}
|
|
};
|
|
new Runnable() {
|
|
public void run() {
|
|
i[0] = 0;
|
|
}
|
|
};
|
|
}
|
|
}
|
|
|