Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/wrapAdapterCallInJava11/beforePathOf.java
Ilyas Selimov 07acc2a679 IDEA-228553 - added negative test on Paths.get
GitOrigin-RevId: 9062c575d25649c9d3a271c2387227e7e578d0a0
2020-05-29 13:33:24 +03:00

10 lines
140 B
Java

// "Wrap parameter using 'Path.of()'" "true"
import java.nio.file.*;
class Test {
void m() {
Files.readString("<caret>path");
}
}