summaryrefslogtreecommitdiff
path: root/test/Preprocessor/macro-reserved-cxx11.cpp
blob: 6daea953e8a60043a19ea93c82d8dfb4d2eeb9b8 (plain)
1
2
3
4
5
6
7
8
// RUN: %clang_cc1 -fsyntax-only -std=c++11 -pedantic -verify %s
// RUN: %clang_cc1 -fsyntax-only -std=c++14 -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;