blob: bbda71138d59c527c5bef674b2299304c5227f0e [file] [log] [blame]
// "Convert to local variable" "true"
class Temp {
void foo() {
<caret>int x = 5;
System.out.println(x);
}
void bar() {
foo();
}
}