mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 18:50:59 +07:00
10 lines
186 B
Java
10 lines
186 B
Java
// "Apply conversion '.toArray()'" "true-preview"
|
|
|
|
import java.util.*;
|
|
class Raw {
|
|
Object[] foo() {
|
|
Set set = new TreeSet();
|
|
Object[] arr = set.toArray();
|
|
return arr;
|
|
}
|
|
} |