Daily bump.
[gcc.git] / gcc / testsuite / g++.dg / diagnostic / thread1.C
bloba39fc6043f52d067444e2913472da6fe7ba6a920
1 // { dg-do compile { target c++11 } }
3 int foo();
5 __thread int i __attribute__((unused)) = foo();  // { dg-error "14:non-local variable .i. declared .__thread. needs" }
7 struct S
9   constexpr S() {}
10   ~S();
13 __thread S s __attribute__((unused));  // { dg-error "12:non-local variable .s. declared .__thread." }