// "Move assignment to field declaration" "true-preview" class X { // Create default runnable Object f = new Runnable() { void x(int p) { int f = p; } public void run() { } }; X() { // } void x() { int i = f; } void x2() { f = 9; } }