mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
11 lines
190 B
Java
11 lines
190 B
Java
// "Surround with array initialization" "true-preview"
|
|
import java.util.List;
|
|
|
|
class A {
|
|
|
|
public void test(List<?>[] t){}
|
|
|
|
void foo(List<Number> list) {
|
|
test(new List[]{list});
|
|
}
|
|
} |