Files
openide/java/java-tests/testData/codeInsight/typing/dotOnNewLine_after.java
Rustam Vishnyakov 0887e2cfb8 When '.' is typed on a new line, automatically adjust line indent for a chained call (solves IDEA-255648)
GitOrigin-RevId: 21315bb550bacc92cd2958c505eb0b5a989ee858
2021-04-16 17:12:51 +03:00

9 lines
158 B
Java

public class Test {
void foo1() {
foo(
strings
.stream()
.<caret>
);
}
}