mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-23 16:20:55 +07:00
8 lines
211 B
Java
8 lines
211 B
Java
// "Fix all 'Declaration access can be weaker' problems in file" "true"
|
|
class Test {
|
|
<caret>public int myCounter;
|
|
|
|
public static void main(String[] args) {
|
|
System.out.println(new Test().myCounter);
|
|
}
|
|
} |