class PlusEqualsCantAssignToObject { public static void main(String[] args) { Object o = "hello"; o += "bye"; } }