mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
14 lines
197 B
Java
14 lines
197 B
Java
// "Adapt argument using 'new File()'" "true-preview"
|
|
import java.io.File;
|
|
|
|
class Test {
|
|
|
|
void m() {
|
|
readFile("my<caret>.txt");
|
|
}
|
|
|
|
static String readFile(File f) {
|
|
return null;
|
|
}
|
|
|
|
} |