mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-31 02:50:55 +07:00
14 lines
196 B
Java
14 lines
196 B
Java
// "Create field for parameter 'p1'" "true-preview"
|
|
|
|
class Test{
|
|
int myP1;
|
|
private final int myP3;
|
|
int myP2;
|
|
|
|
Test(int p1, int p2){
|
|
myP3 = p1;
|
|
myP2 = p2;
|
|
}
|
|
}
|
|
|