blob: a1a961ef98442d07b48e6a7430368a04ae452339 [file] [log] [blame]
public class Foo {
void m() {
int[] xs = {1, 2, 3};
for (int x : xs) {
<caret>
}
xs = new int[0];
}
}