Files
openide/java/java-tests/testData/codeInsight/completion/normal/SmartEnterGuessArgumentCount.java
T
Egor Zhdan 39d2d77155 Cleanup: NotNull/Nullable
GitOrigin-RevId: b8e892f32ea84c2115973155dba7127b892cc36e
2019-06-13 03:14:35 +03:00

10 lines
225 B
Java

class Main {
public void test() {
Path path = Paths.get("/tmp");
foo(getf<caret>path, 5);
}
private String getFileName(Path path) { return path.toString(); }
private void foo(String text, int count) {}
}