mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
Fixes IDEA-349083 Reimplement unused inspection not as a part of PostHighlightingVisitor, but as a normal inspection GitOrigin-RevId: cb6e22eddbaf9db42626a79c7881bd377c4c7863
9 lines
193 B
Java
9 lines
193 B
Java
// "Fix all 'Unused declaration' problems in file" "true"
|
|
public class Test {
|
|
record R(int x, int y) {}
|
|
void test(Object obj) {
|
|
if (obj instanceof R(int <caret>a, int b)) {
|
|
|
|
}
|
|
}
|
|
} |