blob: 9b5e1c205cf32d84f189540c73bb4204f3f7a671 [file] [log] [blame]
Richard Smithfccb5122016-10-18 20:27:16 +00001// RUN: %clang_cc1 -fsyntax-only -std=c++14 -verify %s
2
3void f() {
4 if (bool b = true; b) {} // expected-warning {{'if' initialization statements are a C++1z extension}}
5 switch (int n = 5; n) { // expected-warning {{'switch' initialization statements are a C++1z extension}}
6 case 5: break;
7 }
8}