mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 00:20:54 +07:00
(related to the old issues IDEA-95697, IDEA-102872 & IDEA-111785) GitOrigin-RevId: b9750fa39fa60c8562eba7561a7015cfd9548fa2
11 lines
174 B
Java
11 lines
174 B
Java
class Test {
|
|
private int a;
|
|
private final int b;
|
|
private int c;
|
|
private final int d;
|
|
|
|
Test(int b, int d) {
|
|
this.b = b;
|
|
this.d = d;
|
|
}
|
|
} |