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