mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-28 15:20:54 +07:00
13 lines
167 B
Java
13 lines
167 B
Java
// "Create field for parameter 'p1'" "false"
|
|
|
|
class Test{
|
|
int myP1;
|
|
int myP2;
|
|
|
|
void f(int p<caret>1, int p2){
|
|
myP2 = p1;
|
|
p1 = 0;
|
|
}
|
|
}
|
|
|