mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-13 14:36:58 +07:00
11 lines
250 B
Java
11 lines
250 B
Java
class AdditionTurnsIntoConcatenation {
|
|
|
|
public static void main(String[] args) throws Exception {
|
|
String s = "1" + m<caret>() + "2";
|
|
System.out.println(s);
|
|
}
|
|
|
|
private static String m() {
|
|
return 1 + 2 + "x";
|
|
}
|
|
} |