blob: af51484b49169e86cb95da1434e6e6e41998e8bc (
plain)
1
2
3
4
5
6
7
8
9
|
/* { dg-do compile } */
/* { dg-require-effective-target tls } */
static __thread int fstat ;
static __thread int fstat = 1 ; /* { dg-line fstat_prev } */
static __thread int fstat ;
static __thread int fstat = 2;
/* { dg-error "redefinition of 'fstat'" "" { target *-*-* } .-1 } */
/* { dg-message "note: previous definition of 'fstat'" "note" { target *-*-* } fstat_prev } */
|