blob: 0a05cff186e053640d81e35d1a1dcc7b47a2a506 [file] [log] [blame]
// Report invalid extern and __thread combinations.
// { dg-require-effective-target tls_native }
extern int j; // { dg-error "previously declared here" }
__thread int j; // { dg-error "follows non-thread-local" }
extern __thread int i; // { dg-error "previously declared here" }
int i; // { dg-error "follows thread-local" }
extern __thread int k; // This is fine.
__thread int k;