1// RUN: %clang_cc1 -fsyntax-only -verify %s 2// expected-no-diagnostics3 4void test() {5 int x;6 do7 int x;8 while (1);9}10