mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-29 04:45:04 +07:00
GitOrigin-RevId: 0357190e17a3486c70b8e7d0fa418918193ea6d7
9 lines
159 B
Java
9 lines
159 B
Java
// "Replace 'list' with pattern variable" "true"
|
|
import java.util.List;
|
|
|
|
class X {
|
|
void test(Object obj) {
|
|
if (obj instanceof List<?> list) {
|
|
}
|
|
}
|
|
} |