mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-04 23:39:07 +07:00
7 lines
165 B
Java
7 lines
165 B
Java
class Test {
|
|
void m() {
|
|
String xxx = "qwe.asd.zxc";
|
|
String yyy = 1 == 1 ? "qwe.asd.zxc" : "";
|
|
String zzz = (1 == 1 ? "qwe.asd.zxc" : "") + "qwe";
|
|
}
|
|
} |