mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-01 02:38:59 +07:00
IDEA-323910 Implement parser for "JEP 443: Unnamed Patterns and Variables (Preview)" IDEA-323960 Support error highlighting for unnamed variables (JEP 443) GitOrigin-RevId: 1b9ee424063dfd4d32c2215fc8b0a9838dbdcd95
8 lines
153 B
Java
8 lines
153 B
Java
// "Rename 'x' to '_'" "true-preview"
|
|
class Simple {
|
|
void test() {
|
|
for(int <caret>x : new int[10]) {
|
|
System.out.println("hello");
|
|
}
|
|
}
|
|
} |