Created
September 13, 2015 19:44
-
-
Save H2CO3/611dd82f02ece83b14ad to your computer and use it in GitHub Desktop.
This file contains hidden or 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 struct { | |
| int x; | |
| } Foo; | |
| int main() | |
| { | |
| int n = 1; | |
| int VLA_is_not_in_cplusplus[n]; | |
| Foo f = { .x = 42 }; | |
| f = (Foo){ 42 }; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment