forked from OSchip/llvm-project
9 lines
99 B
C++
9 lines
99 B
C++
![]() |
// RUN: clang -fsyntax-only -verify %s
|
||
|
|
||
|
void test() {
|
||
|
int x;
|
||
|
do
|
||
|
int x;
|
||
|
while (1);
|
||
|
}
|