Skip to content

Instantly share code, notes, and snippets.

@abatilo
Created October 26, 2015 14:50
Show Gist options
  • Save abatilo/f20daee4f8aa89944aef to your computer and use it in GitHub Desktop.
Save abatilo/f20daee4f8aa89944aef to your computer and use it in GitHub Desktop.
static initialization test
#include <stdio.h>
class Temp {
public:
static int a;
};
int main() {
printf("a: %d\n", Temp::a);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment