blob: dc22da7e4cd600cf6184443f602a113566e8f5b0 [file] [log] [blame]
Aaron Ballman7c181592017-12-07 23:10:09 +00001// RUN: %clang_cc1 -fdouble-square-bracket-attributes -std=c11 -E %s -o - | FileCheck %s
2
3// CHECK: has_fallthrough
4#if __has_c_attribute(fallthrough)
5 int has_fallthrough();
6#endif
7
8// CHECK: does_not_have_selectany
9#if !__has_c_attribute(selectany)
10 int does_not_have_selectany();
11#endif
12