mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-23 00:42:21 +07:00
a9069f60e8
GitOrigin-RevId: 78ef76ab85b1e051d0bb887801379136be041c5b
9 lines
140 B
Java
9 lines
140 B
Java
// "Iterate over String[]" "true"
|
|
class Test {
|
|
void foo() {
|
|
for (String s : new String[]{"a", "b", "c"}) {
|
|
|
|
}
|
|
|
|
}
|
|
} |