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