blob: b92cdfc4900e1961c4c8e9b06a24c31e0e628177 [file] [log] [blame]
// "Copy 'i' to temp final variable" "false"
interface I {
int f();
}
class C {
void foo() {
int i = new I() {
public int f() {
return <caret>i;
}
}.f();
}
}