mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 10:20:56 +07:00
10 lines
191 B
Java
10 lines
191 B
Java
// "Adapt argument using 'new File()'" "true-preview"
|
|
import java.util.*;
|
|
import java.io.File;
|
|
|
|
class Demo {
|
|
void test(int value) {
|
|
Set<File> file = Set.of("/etc/<caret>passwd");
|
|
}
|
|
}
|