In gcc/: 2010-10-05 Nicola Pero <nicola.pero@meta-innovation.com>
[gcc.git] / gcc / testsuite / obj-c++.dg / tls / diag-4.mm
1 /* Invalid __thread specifiers. */
2 /* { dg-require-effective-target tls } */
3
4 __thread typedef int g4; /* { dg-error "multiple storage classes in declaration of" } */
5
6 void foo()
7 {
8 __thread auto int l2; /* { dg-error "multiple storage classes in declaration of" } */
9 __thread register int l4; /* { dg-error "multiple storage classes in declaration of" } */
10 }