mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-26 12:20:55 +07:00
13 lines
188 B
Java
13 lines
188 B
Java
// "Bind method parameters to fields" "true-preview"
|
|
|
|
class A{
|
|
private int myP1;
|
|
private int myP2;
|
|
|
|
void method(int p1, int p2){
|
|
myP1 = p1;
|
|
myP2 = p2;
|
|
}
|
|
}
|
|
|