1*d930ed1aSAaron Ballman // RUN: %clang_cc1 -std=c++11 %s -verify 2*d930ed1aSAaron Ballman 3*d930ed1aSAaron Ballman #if __has_c_attribute(fallthrough) // expected-error {{function-like macro '__has_c_attribute' is not defined}} 4*d930ed1aSAaron Ballman #endif 5*d930ed1aSAaron Ballman 6*d930ed1aSAaron Ballman #if __has_c_attribute(gnu::transparent_union) // expected-error {{function-like macro '__has_c_attribute' is not defined}} 7*d930ed1aSAaron Ballman #endif 8*d930ed1aSAaron Ballman 9