blob: a974d8198561d948d6a34c861f96c64e62f57df5 [file] [log] [blame]
Eric Christopher01c5f022013-04-17 17:27:51 +00001// RUN: %clang_cc1 -std=c++11 -triple=x86_64-linux-gnu -verify %s
Richard Smith5990db62013-04-15 08:33:22 +00002
3struct S {
4 static thread_local int a;
5 static int b; // expected-note {{here}}
6 thread_local int c; // expected-error {{'thread_local' is only allowed on variable declarations}}
7 static thread_local int d; // expected-note {{here}}
8};
9
10thread_local int S::a;
11thread_local int S::b; // expected-error {{thread-local declaration of 'b' follows non-thread-local declaration}}
12thread_local int S::c; // expected-error {{non-static data member defined out-of-line}}
13int S::d; // expected-error {{non-thread-local declaration of 'd' follows thread-local declaration}}
14
15thread_local int x[3];
16thread_local int y[3];
17thread_local int z[3]; // expected-note {{previous}}
18
19void f() {
20 thread_local int x;
21 static thread_local int y;
David Majnemer38a50c02015-07-14 20:08:49 +000022 extern thread_local int z; // expected-error {{redeclaration of 'z' with a different type}}
Richard Smith5990db62013-04-15 08:33:22 +000023}