mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-02 14:38:30 +07:00
GitOrigin-RevId: d02496feb2ad7913ec4973d1ea16cba17cdeed79
13 lines
220 B
Plaintext
13 lines
220 B
Plaintext
public class AssignmentAndReassignmentInLoop {
|
|
|
|
public void test() {
|
|
for(int i = 0; i < 3; i++) {
|
|
String replacement = "foo";
|
|
|
|
replacement = "bar";
|
|
|
|
System.out.println(replacement);
|
|
}
|
|
}
|
|
|
|
} |