diff options
-rw-r--r-- | clang/test/Parser/attributes.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/clang/test/Parser/attributes.c b/clang/test/Parser/attributes.c new file mode 100644 index 00000000000..f619111208c --- /dev/null +++ b/clang/test/Parser/attributes.c @@ -0,0 +1,6 @@ +// RUN: clang -fsyntax-only %s + +static __inline void __attribute__((__always_inline__, __nodebug__)) +foo (void) +{ +} |