Clang Project

clang_source_code/test/Preprocessor/has_c_attribute.c
1// 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
13