xref: /minix3/external/bsd/llvm/dist/clang/test/Analysis/PR9741.cpp (revision 0a6a1f1d05b60e214de2f05a7310ddd1f0e590e7)
1*0a6a1f1dSLionel Sambuc // RUN: %clang_cc1 -std=c++11 -Wuninitialized -verify %s
2f4a2713aSLionel Sambuc // expected-no-diagnostics
3f4a2713aSLionel Sambuc 
f()4f4a2713aSLionel Sambuc void f() {
5f4a2713aSLionel Sambuc   int a[] = { 1, 2, 3 };
6f4a2713aSLionel Sambuc   unsigned int u = 0;
7f4a2713aSLionel Sambuc   for (auto x : a)
8f4a2713aSLionel Sambuc     ;
9f4a2713aSLionel Sambuc }
10