mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-20 20:20:56 +07:00
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);
|
|
}
|
|
} |