mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-07 04:03:20 +07:00
GitOrigin-RevId: 0ee29991b00d4ac8341c031a4a111b23bb44b800
8 lines
121 B
Java
8 lines
121 B
Java
// "Convert to local variable" "true"
|
|
class Temp {
|
|
|
|
void test(int <caret>p) {
|
|
p = 1;
|
|
System.out.print(p);
|
|
}
|
|
} |