blob: 14dbed5c9018829a4a935dd19f92396ecf4a0597 [file] [log] [blame]
// "Make 'f' static" "true"
public class Foo {
int g;
static int f;
static void foo() {
<caret>f = 0;
}
}