mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 00:50:53 +07:00
13 lines
152 B
Java
13 lines
152 B
Java
// "Create field for parameter 'p1'" "true-preview"
|
|
|
|
enum Test{
|
|
A;//comment
|
|
|
|
private int myP1;
|
|
|
|
void f(int p1){
|
|
myP1 = p1;
|
|
}
|
|
}
|
|
|