Home | History | Annotate | Download | only in SemaCXX
      1 // RUN: %clang_cc1 -fsyntax-only -verify %s
      2 
      3 void test() {
      4   int x;
      5   do
      6     int x;
      7   while (1);
      8 }
      9