IDEA-202262 Wrong cursor position, when IDEA autocompletes List.of(), Set.of() and other Java 9 factory methods for Collections

This commit is contained in:
peter
2019-01-03 12:40:08 +01:00
parent ecf4579ce5
commit 7486e9b9ef
4 changed files with 59 additions and 0 deletions
@@ -0,0 +1,10 @@
class C {
void method() {}
void method(String s) {}
void method(String... s) {}
void method1(String... s) {}
{
me<caret>
}
}
@@ -0,0 +1,10 @@
class C {
void method() {}
void method(String s) {}
void method(String... s) {}
void method1(String... s) {}
{
method(<caret>);
}
}