Files
openide/java/java-tests/testData/codeInsight/completion/normal/SmartEnterGuessArgumentCount.java
T
Anton Makeev b54aaf7e4e IDEA-210281 Cleanup Gradle settings: separate Runner configurable removed
GitOrigin-RevId: adbc39121fe91beb633e125b4cf39bfe0a422e4b
2019-05-17 19:02:16 +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) {}
}