mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-10 13:17:09 +07:00
introduce: do not treat as same different foreach vars (IDEA-58421)
This commit is contained in:
+11
@@ -0,0 +1,11 @@
|
||||
class A {
|
||||
{
|
||||
List<Integer> l = new ArrayList<Integer>();
|
||||
for (Integer i : l) {
|
||||
System.out.println(<selection>i.toString()</selection>);
|
||||
}
|
||||
for (Integer i : l) {
|
||||
System.out.println(i.toString());
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user