mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 08:50:57 +07:00
9 lines
199 B
Java
9 lines
199 B
Java
// "Collapse into loop" "true-preview"
|
|
class X {
|
|
public int hashCode() {
|
|
for (int j = 0; j < 4; j++) {
|
|
System.out.println(1);
|
|
for (int i = 0; i < 10; i++) {}
|
|
}
|
|
}
|
|
} |