Files
2024-12-11 18:50:56 +00:00

10 lines
239 B
Java

public class A {
public void f() {
s("""
first line with whitespaces in the end \s
second line with whitespaces in the end \s<caret>""");
}
public void s(String s) {
}
}