blob: 81819d77490832b4de40d49909b31b780b8f3912 [file] [log] [blame]
public class FlowCompoundConcatenation {
static String getNonNullString() {
return "";
}
public static void testCompoundAssignWithNullAndMethodCall() {
String s = null;
s += getNonNullString();
s.toString();
}
public static void testCompoundAssignWithNull() {
String s = null;
s += "hello";
s.toString();
}
}