mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 01:50:56 +07:00
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);
|
|
}
|
|
}
|
|
|
|
} |