You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
376 B
9 lines
376 B
// 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;
|