mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
14 lines
254 B
Plaintext
14 lines
254 B
Plaintext
public class OuterLoopReassignment {
|
|
|
|
public void test() {
|
|
String replacement = "foo";
|
|
|
|
for (int i = 0; i < 3; i++) {
|
|
for (int j = 0; j < 3; j++) {
|
|
System.out.println(replacement);
|
|
}
|
|
replacement = "bar";
|
|
}
|
|
}
|
|
|
|
} |