mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-22 14:50:53 +07:00
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;
|
|
}
|
|
} |