mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-01 19:02:04 +07:00
Fixes IDEA-376103 Inline method returning 'null' into for-each iterable parameter makes code incompilable GitOrigin-RevId: 6216652a66ebe3e12285803b4370405be5d5f353
8 lines
131 B
Plaintext
8 lines
131 B
Plaintext
public class InlineNullInForEach {
|
|
|
|
void test() {
|
|
for (int i : (int[]) null) {
|
|
System.out.println(i);
|
|
}
|
|
}
|
|
} |