mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 05:09:37 +07:00
16 lines
228 B
Java
16 lines
228 B
Java
// "Copy 'i' to final temp variable" "false"
|
|
interface I {
|
|
int f();
|
|
}
|
|
|
|
class C {
|
|
void foo() {
|
|
int i = new I() {
|
|
public int f() {
|
|
return <caret>i;
|
|
}
|
|
|
|
}.f();
|
|
}
|
|
}
|