Skip to content

Instantly share code, notes, and snippets.

@paulrehkugler
Created April 18, 2014 20:48
Show Gist options
  • Save paulrehkugler/11063725 to your computer and use it in GitHub Desktop.
Save paulrehkugler/11063725 to your computer and use it in GitHub Desktop.
Block Pointer - Doesn't work
// trying to make a block pointer
typedef void (^DoingBadStuffWithBlocks)();
DoingBadStuffWithBlocks *theCompilerHatesThis = &^{
if (false)
{
*theCompilerHatesThis();
}
}();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment