blob: f920ef9085b161adac8e210bc63ace86826a8b03 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
// RUN: %clang_cc1 -fsyntax-only -verify -std=c++11 %s
template<typename T, typename U>
struct pair {};
template<typename T, typename U>
struct map {
typedef pair<T,U> *iterator;
iterator begin();
iterator end();
};
template<typename T, typename U>
pair<T,U> &tie(T &, U &);
int foo(map<char*,int> &m) {
char *p;
int n;
for (pair<char*,int> x : m) {
(void)x;
}
for (tie(p, n) : m) { // expected-error {{for range declaration must declare a variable}}
(void)p;
(void)n;
}
return n;
}
|