Files
Bas Leijdekkers 2ebaab02d1 Java: fix selection behaviour for String Templates (IDEA-333906)
GitOrigin-RevId: 0727e9c5b4a56d752bc38d7fc6fa22ca676dd9ba
2023-10-31 23:25:43 +00:00

11 lines
194 B
Java

class StringTemplate1 {
String x(int i) {
return STR."""
one <selection><caret>two</selection>
three \{i}
four five six \{i}
seven eight nine
""";
}
}