1 // RUN: %clang_cc1 -cc1 -std=c++0x -Wuninitialized -verify %s 2 3 void f() { 4 int a[] = { 1, 2, 3 }; 5 unsigned int u = 0; 6 for (auto x : a) 7 ; 8 } 9