blob: cbb701918117d3f2f0ab55b3fdf96afc0921f0f7 [file] [log] [blame]
package com.siyeh.igfixes.style.replace_with_string;
class Precedence3 {
void foo() {
String start = "0", end = "0";
String string = "Time: " + end + start + ".";
}
}