mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 18:50:59 +07:00
12 lines
204 B
Plaintext
12 lines
204 B
Plaintext
public class LoopReassignment {
|
|
|
|
public void test() {
|
|
String replacement = "foo";
|
|
|
|
for (int i = 0; i < 10; i++) {
|
|
System.out.println(replacement);
|
|
replacement = "bar";
|
|
}
|
|
}
|
|
|
|
} |