xref: /llvm-project/clang/test/Preprocessor/macro-reserved-cxx11.cpp (revision 7704ba7f97b35bb465384248a204e549f3c18263)
1 // RUN: %clang_cc1 -fsyntax-only -std=c++11 -pedantic -verify %s
2 // RUN: %clang_cc1 -fsyntax-only -std=c++14 -pedantic -verify %s
3 
4 #define for 0    // expected-warning {{keyword is hidden by macro definition}}
5 #define final 1  // expected-warning {{keyword is hidden by macro definition}}
6 #define override // expected-warning {{keyword is hidden by macro definition}}
7 
8 int x;
9