mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-02 14:38:30 +07:00
GitOrigin-RevId: 0856ada192aa3dbceeed5bd132252d1d407841a4
11 lines
134 B
Java
11 lines
134 B
Java
class Test {
|
|
private final int <caret>myA;
|
|
|
|
Test(int a) {
|
|
myA = a * 1;
|
|
}
|
|
|
|
void test() {
|
|
System.out.println(myA);
|
|
}
|
|
} |