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