mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-05 10:21:05 +07:00
16 lines
211 B
Java
16 lines
211 B
Java
// "Copy 'i' to temp final variable" "true"
|
|
import java.io.*;
|
|
|
|
class a {
|
|
void f() {
|
|
int i = 0;
|
|
new Runnable() {
|
|
public void run() {
|
|
int ii = <caret>i;
|
|
}
|
|
};
|
|
i++;
|
|
}
|
|
}
|
|
|