f4a2713ac8
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
21 lines
471 B
C++
21 lines
471 B
C++
// RUN: %clang_cc1 -fsyntax-only -verify %s -std=c++11 -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) // expected-warning {{unused variable 'e'}}
|
|
;
|
|
}
|
|
|
|
T elements[10];
|
|
};
|
|
|
|
|
|
int main(int, char**) {
|
|
Vector<int> vector;
|
|
vector.doIt(); // expected-note {{here}}
|
|
}
|