mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-03 20:33:31 +07:00
GitOrigin-RevId: 4d6a5487576dbbc4aca9c89b067eec8218aff686
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;
|
|
}
|
|
|
|
} |