Skip to content

Instantly share code, notes, and snippets.

@soapyigu
Last active April 28, 2018 21:12
Show Gist options
  • Save soapyigu/8c7aefd0d6d7acc15e66031a80866bfa to your computer and use it in GitHub Desktop.
Save soapyigu/8c7aefd0d6d7acc15e66031a80866bfa to your computer and use it in GitHub Desktop.
int main(int argc, const char * argv[]) {
@autoreleasepool {
Queue<NSString *> *stringQueue = [[Queue alloc] init];
[stringQueue enqueue:@"abc"]
Queue<NSNumber *> *numberQueue = [[Queue alloc] init];
[numberQueue enqueue:@123];
[numberQueue enqueue:@"abc"]; // Warning: Incompatible pointer types sending 'NSString *' to parameter of type 'NSNumber *'
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment