1*0a6a1f1dSLionel Sambuc // RUN: %clang_cc1 -std=c++11 -Wuninitialized -verify %s 2f4a2713aSLionel Sambuc // expected-no-diagnostics 3f4a2713aSLionel Sambuc f()4f4a2713aSLionel Sambucvoid 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