diff options
Diffstat (limited to 'clang-tools-extra/test/clang-tidy/macros.cpp')
-rw-r--r-- | clang-tools-extra/test/clang-tidy/macros.cpp | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/clang-tools-extra/test/clang-tidy/macros.cpp b/clang-tools-extra/test/clang-tidy/macros.cpp deleted file mode 100644 index fa4f32a897b..00000000000 --- a/clang-tools-extra/test/clang-tidy/macros.cpp +++ /dev/null @@ -1,7 +0,0 @@ -// RUN: clang-tidy -checks='-*,google-explicit-constructor' %s -- | FileCheck %s - -#define Q(name) class name { name(int i); } - -Q(A); -// CHECK: :[[@LINE-1]]:3: warning: single-argument constructors must be marked explicit -// CHECK: :3:30: note: expanded from macro 'Q' |