mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
25 lines
514 B
Java
25 lines
514 B
Java
// "Transform 'i' into final one element array" "true-preview"
|
|
import java.io.*;
|
|
|
|
class aa {
|
|
void f() {
|
|
int i = 4;
|
|
Runnable runnable = new Runnable() {
|
|
public void run() {
|
|
new Runnable() {
|
|
public void run() {
|
|
int o=i;
|
|
i=o;
|
|
}
|
|
};
|
|
new Runnable() {
|
|
public void run() {
|
|
int o=<caret>i;
|
|
}
|
|
};
|
|
}
|
|
};
|
|
}
|
|
}
|
|
|