aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/obj-c++.dg/tls/diag-3.mm
blob: 22c2395ab97a7f67ef967f6129967856a1870958 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* Report invalid extern and __thread combinations. */
/* { dg-require-effective-target tls } */

extern int j;		/* { dg-message "previously declared here" } */
__thread int j;		/* { dg-error "follows non-thread-local" } */

extern __thread int i;	/* { dg-message "previously declared here" } */
int i;			/* { dg-error "follows thread-local" } */

extern __thread int k;	/* This is fine. */
__thread int k;