mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-20 20:20:56 +07:00
11 lines
239 B
Java
11 lines
239 B
Java
// "Apply conversion '.toArray(new java.lang.String[0])'" "true-preview"
|
|
|
|
import java.util.*;
|
|
class Assign {
|
|
String[] foo() {
|
|
Set<String> set = Collections.singleton("s");
|
|
String[] arr;
|
|
<caret>arr = set;
|
|
return arr;
|
|
}
|
|
} |