mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 17:51:09 +07:00
12 lines
148 B
Java
12 lines
148 B
Java
// "Create field for parameter 'p1'" "true"
|
|
|
|
class Test{
|
|
int myP1;
|
|
int myP2;
|
|
|
|
Test(int p<caret>1, int p2){
|
|
myP2 = p2;
|
|
}
|
|
}
|
|
|