blob: c23b141f3cfec9bd53f4269862d9d85999521a47 (
plain)
1
2
3
4
5
6
7
8
9
10
|
/* Report invalid extern and __thread combinations. */
extern int j; /* { dg-error "previous declaration" } */
__thread int j; /* { dg-error "thread-local declaration for" } */
extern __thread int i; /* { dg-error "previous declaration" } */
int i; /* { dg-error "non thread-local" } */
extern __thread int k; /* This is fine. */
__thread int k;
|