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