mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-23 05:07:31 +07:00
GitOrigin-RevId: d8c195494ae7973a44c1daf707fc38e6f76a7191
19 lines
314 B
Java
19 lines
314 B
Java
// "Access static 'R.rr' via class 'R' reference|->Extract possible side effects" "true-preview"
|
|
|
|
class AClass
|
|
{
|
|
public static class R {
|
|
static int rr = 0;
|
|
}
|
|
public R getR() {
|
|
return null;
|
|
}
|
|
}
|
|
class ss {
|
|
void f(AClass d){
|
|
d.getR();
|
|
int i = AClass.R.rr;
|
|
}
|
|
|
|
}
|