Files
Bas Leijdekkers babfae316e [java] improve quick-fix text (IDEA-223692)
GitOrigin-RevId: 7226e492ffe7889bfbabab6dd9ea3d04d64a1d0f
2024-03-10 15:30:17 +00:00

8 lines
193 B
Java

// "Qualify static 'stat' access with reference to class 'AClass'" "true-preview"
class AClass {
static boolean stat;
void foo (boolean stat) {
this.stat<caret> = stat;
}
}