Skip to content

Instantly share code, notes, and snippets.

@alaborie
Created July 12, 2012 21:01
Show Gist options
  • Save alaborie/3100972 to your computer and use it in GitHub Desktop.
Save alaborie/3100972 to your computer and use it in GitHub Desktop.
Clang 3.1: interesting warning...
@protocol MyProtocol <NSObject>
@end
int main(int argc, char *argv[])
{
@autoreleasepool
{
id <MyProtocol> foo = nil;
__unused id value = [foo valueForKey:@"bar"];
return EXIT_SUCCESS;
}
}
@alaborie
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment