mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-03 00:29:58 +07:00
IDEA-331562 GitOrigin-RevId: 0130dfe7c9d5fcf1fa23036cda9c16132c8cf920
10 lines
239 B
Java
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) {
|
|
}
|
|
} |