mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
11 lines
204 B
Java
11 lines
204 B
Java
// "Assign parameter to field 'myId'" "true-preview"
|
|
|
|
class Person {
|
|
int a;
|
|
int myId;
|
|
void f(int a, int id) {
|
|
this.a = foo(a);
|
|
myId = id;
|
|
}
|
|
int foo(int a) {return a;}
|
|
} |