mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-11 11:36: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
7 lines
182 B
Java
7 lines
182 B
Java
// "Rename 'x' to '_'" "false"
|
|
class Simple {
|
|
void test() {
|
|
// Do not suggest unnamed local, even if it's allowed; only remove variable is suggested
|
|
int <caret>x = 0;
|
|
}
|
|
} |