Files
openide/java/java-tests/testData/codeInsight/completion/normal/SmartEnterGuessArgumentCount.java
T
Alexandr Suhinin 9215f4240b [duplicates] enable duplicates analysis in PyCharm/WebStorm/PhpStorm/RubyMine
GitOrigin-RevId: 1545b79fdca4888f4b94f47f22703fd37694fa7a
2019-05-27 15:07:30 +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) {}
}