blob: f017c513727fc426f80104762ff2414c9055baec [file] [log] [blame]
package com.siyeh.igfixes.style.replace_with_string;
class ConstructorArgument {
void m() {
String s = "init-" + "appended";
}
}