mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 01:50:56 +07:00
1. Surround with array initialization 2. Apply .toArray() conversion 3. Limited vararg support 4. Limited qualifier propagation GitOrigin-RevId: f81f593502df317b555e816af20cdec2d04488fc
8 lines
180 B
Java
8 lines
180 B
Java
// "Surround with array initialization" "true-preview"
|
|
import java.util.*;
|
|
|
|
public class Demo {
|
|
void test() {
|
|
Set<int[]> integers = Collections.singleton(new int[]{1});
|
|
}
|
|
} |