mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-07 15:35:40 +07:00
- use PsiStatement as scope instead of PsiIfStatement - more tests GitOrigin-RevId: 2602190296988a80d54520c7a0f15fd0f8e3d942
6 lines
192 B
Java
6 lines
192 B
Java
// "Replace cast expressions with pattern variable" "true"
|
|
public final class A {
|
|
private static void foo(Object o) {
|
|
int x = o instanceof String ? ((Strin<caret>g)o).length() : 0;
|
|
}
|
|
} |