mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 00:50:53 +07:00
17 lines
305 B
Java
17 lines
305 B
Java
// "Move assignment to field declaration" "false"
|
|
class UU extends U {
|
|
Runnable f;
|
|
int f2;
|
|
|
|
public UU() {
|
|
final int outer = 0;
|
|
f <caret>= new Runnable() {
|
|
int t;
|
|
public void run() {
|
|
t=0;
|
|
t = outer;
|
|
}
|
|
};
|
|
}
|
|
}
|