Files
Alexandr Suhinin 0ea2cc86c8 IDEA-242718: dont pass static fields as parameters
GitOrigin-RevId: 2b00ccc0466cc643ca6bd9c40fcc974b82d2fed8
2020-06-30 11:38:36 +00:00

8 lines
153 B
Java

class Test {
int local = 42;
static int global = 42;
void test(){
<selection>System.out.println(local + global);</selection>
}
}