mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-18 16:17:00 +07:00
12 lines
154 B
Java
12 lines
154 B
Java
// "Convert to local variable" "true"
|
|
class Temp {
|
|
|
|
void foo() {
|
|
<caret>int x = 5;
|
|
System.out.println(x);
|
|
}
|
|
|
|
void bar() {
|
|
foo();
|
|
}
|
|
} |