Skip to content

Instantly share code, notes, and snippets.

@neilinglis
Created June 8, 2012 12:45
Show Gist options
  • Save neilinglis/2895424 to your computer and use it in GitHub Desktop.
Save neilinglis/2895424 to your computer and use it in GitHub Desktop.
Shoudn't the static analyser catch this?
NSMutableArray *test = [NSMutableArray array];
if (YES) {
NSMutableArray *test = [NSMutableArray array];
[test addObject:@"FOO"];
}
NSLog(@"%ld",(long)[test count]); //0, naturally
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment