summaryrefslogtreecommitdiffstats
path: root/test/SemaCXX/for-range-unused.cpp
blob: 7b7d84d3f9c870d06252ff0621886b5065e470aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// RUN: %clang_cc1 -fsyntax-only -verify %s -std=c++0x -Wunused

// PR9968: We used to warn that __range is unused in a dependent for-range.

template <typename T>
  struct Vector {
    void doIt() {
      int a; // expected-warning {{unused variable 'a'}}

      for (auto& e : elements)
        ;
    }

    T elements[10];
  };


int main(int, char**) {
  Vector<int>    vector;
  vector.doIt();
}