1 2 3 4 5 6
class PlusEqualsCantAssignToObject { public static void main(String[] args) { Object o = "hello"; o += "bye"; } }