Sign in
llvm
/
clang
/
1571f048734190c5ed03d1a6083e579ec7b5801f
/
.
/
test
/
SemaCXX
/
do-while-scope.cpp
blob: 2602ae12f243b728328ab4160dc0945144a39386 [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -fsyntax-only -verify %s
void
test
()
{
int
x
;
do
int
x
;
while
(
1
);
}