Welcome to mirror list, hosted at ThFree Co, Russian Federation.

do-while-scope.cpp « SemaCXX « test « clang - github.com/llvm/llvm-project.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2602ae12f243b728328ab4160dc0945144a39386 (plain)
1
2
3
4
5
6
7
8
// RUN: %clang_cc1 -fsyntax-only -verify %s 

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