mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-03 20:33:31 +07:00
GitOrigin-RevId: 7226e492ffe7889bfbabab6dd9ea3d04d64a1d0f
8 lines
193 B
Java
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;
|
|
}
|
|
} |