aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp2a/decomp4.C
blob: d1b0c90ee26d972fb34a32ec20de21dff821bd58 (plain)
1
2
3
4
5
6
7
8
// PR c++/107276
// { dg-do compile { target c++20 } }

auto f(auto x) {
  auto [y] = x; // { dg-error "cannot decompose" }
  return y;
}
int i = f(0);