aboutsummaryrefslogtreecommitdiff
path: root/test/SemaCXX/do-while-scope.cpp
blob: 4e4a48325c1c6d96443dd4b08c8fc84b89a9ead2 (plain) (blame)
1
2
3
4
5
6
7
8
// RUN: clang-cc -fsyntax-only -verify %s 

void test() {
  int x;
  do
    int x;
  while (1);
}