blob: 74f7641fe27469a70050fa57330a31d970e5ad3e [file] [log] [blame]
/* Valid initializations. */
__thread int i = 42;
static int j;
__thread int *p = &j;
/* Note that this is valid in C++ (unlike C) as a run-time initialization. */
int *q = &i;
/* Valid because "const int k" is an integral constant expression in C++. */
__thread const int k = 42;
__thread const int l = k;