mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-06-19 21:48:01 +07:00
10 lines
166 B
Java
10 lines
166 B
Java
// LocalsOrMyInstanceFieldsControlFlowPolicy
|
|
class TestForeach {
|
|
{<caret>
|
|
String[] args = new String[256];
|
|
|
|
for(String s : args) {
|
|
foo(s);
|
|
}
|
|
}
|
|
} |