(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
cpp1y/
lambda-generic-ice4.C
// PR c++/67369
// { dg-do compile { target c++14 } }

int main() {
  unsigned const nsz = 0;
  auto repeat_conditional = [&](auto) {
    auto new_sz = nsz;
  };
  repeat_conditional(1);
}