blob: 4fd22f4112f5de1f161ad6283a95460a727a6eec [file] [log] [blame]
package com.siyeh.igfixes.performance.trivial_string_concatenation;
class AtTheEnd {
void foo(Object o) {
String s = "asdf" + 1 + "<caret>" + o;
}
}