brintos

brintos / llvm-project-archived public Read only

0
0
Text · 170 B · 542bc2d Raw
10 lines · cpp
1// RUN: %clang_cc1 -std=c++11 -Wuninitialized -verify %s2// expected-no-diagnostics3 4void f() {5  int a[] = { 1, 2, 3 };6  unsigned int u = 0;7  for (auto x : a)8    ;9}10