mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-20 11:50:57 +07:00
10 lines
204 B
Java
10 lines
204 B
Java
// "Apply conversion '.toArray(new int[0])'" "false"
|
|
|
|
import java.util.*;
|
|
class Primitive {
|
|
int[] foo() {
|
|
Collection<Integer> c = Arrays.asList(1, 2);
|
|
int[] arr<caret> = c;
|
|
return arr;
|
|
}
|
|
} |