Created
November 29, 2012 19:39
-
-
Save stormbrew/4171332 to your computer and use it in GitHub Desktop.
From http://eli.thegreenplace.net/2011/05/02/the-context-sensitivity-of-c%E2%80%99s-grammar-revisited/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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