teak-llvm/clang/test/Analysis/PR9741.cpp
Alp Toker 544bd43624 Remove duplicated -cc1 in tests
llvm-svn: 196728
2013-12-08 18:06:52 +00:00

10 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)
;
}