blob: 10ac2aada8286b299583194dd1d55583b0052fcb (
plain)
1
2
3
4
5
6
7
8
9
10
|
/* Invalid __thread specifiers. */
/* { dg-require-effective-target tls } */
__thread typedef int g4; /* { dg-error "multiple storage classes in declaration of" } */
void foo()
{
__thread auto int l2; /* { dg-error "multiple storage classes in declaration of" } */
__thread register int l4; /* { dg-error "multiple storage classes in declaration of" } */
}
|