[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / SemaCXX / do-while-scope.cpp
blob67534db36d61668cea71ccf1666a1359aac91a77
1 // RUN: %clang_cc1 -fsyntax-only -verify %s
2 // expected-no-diagnostics
4 void test() {
5 int x;
6 do
7 int x;
8 while (1);