]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/SemaCXX/cxx11-thread-unsupported.cpp
Vendor import of clang RELEASE_360/rc1 tag r226102 (effectively, 3.6.0 RC1):
[FreeBSD/FreeBSD.git] / test / SemaCXX / cxx11-thread-unsupported.cpp
1 // RUN: %clang_cc1 -std=c++11 -triple=x86_64-apple-macosx10.6 -verify %s
2
3 void f() {
4   thread_local int x; // expected-error {{thread-local storage is not supported for the current target}}
5 }