aboutsummaryrefslogtreecommitdiff
path: root/test/Lexer/has_attribute.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/Lexer/has_attribute.cpp')
-rw-r--r--test/Lexer/has_attribute.cpp12
1 files changed, 0 insertions, 12 deletions
diff --git a/test/Lexer/has_attribute.cpp b/test/Lexer/has_attribute.cpp
deleted file mode 100644
index 9a58a3013fbe..000000000000
--- a/test/Lexer/has_attribute.cpp
+++ /dev/null
@@ -1,12 +0,0 @@
-// 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
-