StmtPrinter: factor out arg printing code to PrintCallArgs
[clang.git] / test / Lexer / has_attribute.cpp
blob9a58a3013fbec516709623d014a35a745e4280f4
1 // RUN: %clang_cc1 -E %s -o - | FileCheck %s
3 // CHECK: always_inline
4 #if __has_attribute(always_inline)
5 int always_inline();
6 #endif
8 // CHECK: no_dummy_attribute
9 #if !__has_attribute(dummy_attribute)
10 int no_dummy_attribute();
11 #endif