allwinner_a64/android/external/clang/test/Analysis/PR9741.cpp
2018-08-08 16:14:42 +08:00

9 lines
170 B
C++

// RUN: %clang_cc1 -std=c++11 -Wuninitialized -verify %s
// expected-no-diagnostics
void f() {
int a[] = { 1, 2, 3 };
unsigned int u = 0;
for (auto x : a)
;
}