Advertisement
Guest User

Untitled

a guest
Sep 25th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. const auto mutableString = [NSMutableString stringWithString:@"abc"];
  2. mutableString = [NSMutableString stringWithString:@"def"]; // Error: Can not assign to variable 'mutableString' with const-qualified type 'NSMutableString *__strong const'
  3. [mutableString appendString:@"def"]; // No error
  4.  
  5. auto const mutableString = [NSMutableString stringWithString:@"abc"];
  6. mutableString = [NSMutableString stringWithString:@"def"]; // Error: Can not assign to variable 'mutableString' with const-qualified type 'NSMutableString *__strong const'
  7. [mutableString appendString:@"def"]; // No error
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement