Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
clang
/
cae5095c116c29a4e52c91fa0ad88df09dd2b45f
/
.
/
test
/
Lexer
/
has_attribute.cpp
blob: 9a58a3013fbec516709623d014a35a745e4280f4 [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -E %s -o - | FileCheck %s
// CHECK: always_inline
#if __has_attribute(always_inline)
int
always_inline
();
#endif
// CHECK: no_dummy_attribute
#if !__has_attribute(dummy_attribute)
int
no_dummy_attribute
();
#endif