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