mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-05 17:47:53 +07:00
GitOrigin-RevId: 0357190e17a3486c70b8e7d0fa418918193ea6d7
9 lines
174 B
Java
9 lines
174 B
Java
// "Replace 'list' with pattern variable" "true"
|
|
import java.util.*;
|
|
|
|
class X {
|
|
void test(List<Integer> obj) {
|
|
if (obj instanceof ArrayList<Integer> list) {
|
|
}
|
|
}
|
|
} |