Files
Tagir Valeev 29e678487a [mod-command] 36 more quick-fixes converted to ModCommand
GitOrigin-RevId: e896b23b230cd8475035579fd9d27a719ed8c291
2023-05-17 12:33:58 +00:00

25 lines
315 B
Java

// "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() {
<caret> //
}
void x() {
int i = f;
}
void x2() {
f = 9;
}
}