Serge Pavlov | 07c0f04 | 2014-12-18 11:14:21 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -fsyntax-only -std=c++11 -pedantic -verify %s |
Yunzhong Gao | 7704ba7 | 2015-08-01 02:55:59 +0000 | [diff] [blame] | 2 | // RUN: %clang_cc1 -fsyntax-only -std=c++14 -pedantic -verify %s |
Serge Pavlov | 07c0f04 | 2014-12-18 11:14:21 +0000 | [diff] [blame] | 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; |