Files
Anna.Kozlova f9f5d09f87 inspections: ensure local paired inspection uses display name of the global one
GitOrigin-RevId: 8dfb2236e2ae4016024102e8195e5ce0df954500
2019-12-13 09:34:22 +00:00

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);
}
}