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