mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 19:21:16 +07:00
15 lines
211 B
Java
15 lines
211 B
Java
// "Create field for parameter 'p1'" "true-preview"
|
|
|
|
class Test{
|
|
int myP1;
|
|
int myP2;
|
|
private int myP3;
|
|
|
|
void f(int p1, int p2){
|
|
myP3 = p1;
|
|
int myP2 = p1;
|
|
p1 = 0;
|
|
}
|
|
}
|
|
|