Skip to content

Instantly share code, notes, and snippets.

@rentzsch
Created December 8, 2008 17:58
Show Gist options
  • Save rentzsch/33536 to your computer and use it in GitHub Desktop.
Save rentzsch/33536 to your computer and use it in GitHub Desktop.
#import <Foundation/Foundation.h>
int main (int argc, const char * argv[]) {
assert(1 == [[NSObject alloc] retainCount]);
assert(1 == [[[NSObject alloc] init] retainCount]);
assert(1 == [[NSObject new] retainCount]);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment