hanchenye-llvm-project/clang/test/CodeGen/cxx-condition.cpp

10 lines
158 B
C++

// RUN: clang -emit-llvm %s -o %t
void f() {
int a;
if (int x=a) ++a; else a=x;
while (int x=a) ++a;
for (; int x=a; --a) ;
switch (int x=0) { }
}