mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-23 07:50:55 +07:00
11 lines
142 B
Java
11 lines
142 B
Java
// "Create field for parameter 'p1'" "true-preview"
|
|
|
|
class Test{
|
|
int myP2;
|
|
|
|
Test(int p<caret>1, int p2){
|
|
myP2 = p2;
|
|
}
|
|
}
|
|
|