mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 13:39:36 +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
9 lines
171 B
Java
9 lines
171 B
Java
// "Rename 'vvv' to '_'" "true-preview"
|
|
import java.util.function.Consumer;
|
|
|
|
class Simple {
|
|
void test() {
|
|
Consumer<String> cons = _ -> {};
|
|
cons.accept("");
|
|
}
|
|
} |