Skip to content

Instantly share code, notes, and snippets.

@stormbrew
Created November 29, 2012 19:39
Show Gist options
  • Save stormbrew/4171332 to your computer and use it in GitHub Desktop.
Save stormbrew/4171332 to your computer and use it in GitHub Desktop.
typedef int AA;
void foo()
{
AA AA; /* OK - define variable AA of type AA */
int BB = AA * 2; /* OK - AA is just a variable name here */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment