summaryrefslogtreecommitdiffstats
path: root/test/Analysis/PR9741.cpp
blob: e20e56c9406ae4a377d0a1ca3e5031a2abfd07a0 (plain)
1
2
3
4
5
6
7
8
// RUN: %clang_cc1 -cc1 -std=c++0x -Wuninitialized -verify %s

void f() {
  int a[] = { 1, 2, 3 };
  unsigned int u = 0;
  for (auto x : a)
    ;
}