blob: 4251dbd9ab303052cd8fa026fb8f225ecd7e2678 [file] [log] [blame]
package com.siyeh.igfixes.style.replace_with_string;
class Marathon {
private static void test(boolean marathon) {
String s1 = (marathon ? "AAA" : "BBB") + "CCC";
}
}