blob: b39d5658c91e38d38f759ba644ce2ddc5fa346e6 [file] [log] [blame]
/* Report invalid extern and __thread combinations. */
/* { dg-require-effective-target tls } */
extern int j; /* { dg-message "previous declaration of 'j'" } */
__thread int j; /* { dg-error "follows non-thread-local" } */
extern __thread int i; /* { dg-message "previous declaration of 'i'" } */
int i; /* { dg-error "follows thread-local" } */
extern __thread int k; /* This is fine. */
__thread int k;