blob: e159b6adb63aef8ddcb509e001deafee9ab726e5 (
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
|
// PR c++/86836
// { dg-do compile { target c++11 } }
// { dg-options "" }
struct A {
int operator*();
void operator++();
bool operator!=(A);
};
template <typename> class map {
public:
A begin();
A end();
};
template <typename T> void mergemap(map<T> orig, map<T> toadd) {
for (auto p : toadd)
auto [orig] = orig; // { dg-error "use of 'orig' before deduction of 'auto'" }
} // { dg-warning "structured bindings only available with" "" { target c++14_down } .-1 }
int
main() {
map<double> x, y;
mergemap(x, y);
}
|