1*67e74705SXin Li // RUN: %clang_cc1 -std=c++11 -triple=x86_64-apple-macosx10.6 -verify %s 2*67e74705SXin Li f()3*67e74705SXin Li void f() { 4*67e74705SXin Li thread_local int x; // expected-error {{thread-local storage is not supported for the current target}} 5*67e74705SXin Li } 6