aboutsummaryrefslogtreecommitdiff
path: root/test/Preprocessor/macro-reserved-cxx11.cpp
blob: a740ff6129543d2133f4d0bf31893c1ad8251a96 (plain) (blame)
1
2
3
4
5
6
7
// RUN: %clang_cc1 -fsyntax-only -std=c++11 -pedantic -verify %s

#define for 0    // expected-warning {{keyword is hidden by macro definition}}
#define final 1  // expected-warning {{keyword is hidden by macro definition}}
#define override // expected-warning {{keyword is hidden by macro definition}}

int x;