Lines Matching full:binding
36 …if (auto [ok, d] = f()) // expected-warning {{ISO C++17 does not permit structured binding declara… in h()
38 …if (auto [ok, d] = g()) // expected-warning {{ISO C++17 does not permit structured binding declara… in h()
40 …if (auto [value] = Get()) // expected-warning {{ISO C++17 does not permit structured binding decla… in h()
47 …while (auto [ok, d] = f()) // expected-warning {{ISO C++17 does not permit structured binding decl… in h()
49 …while (auto [ok, d] = g()) // expected-warning {{ISO C++17 does not permit structured binding decl… in h()
51 …while (auto [value] = Get()) // expected-warning{{ISO C++17 does not permit structured binding dec… in h()
58 …for (; auto [ok, d] = f();) // expected-warning {{ISO C++17 does not permit structured binding dec… in h()
60 …for (; auto [ok, d] = g();) // expected-warning {{ISO C++17 does not permit structured binding dec… in h()
62 …for (; auto [value] = Get();) // expected-warning {{ISO C++17 does not permit structured binding d… in h()
77 …switch (auto [ok, d] = x) // expected-warning {{ISO C++17 does not permit structured binding decla… in h()
79 …switch (auto [ok, d] = g()) // expected-warning {{ISO C++17 does not permit structured binding dec… in h()
81 …switch (auto [value] = Get()) {// expected-warning {{ISO C++17 does not permit structured binding … in h()