(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
cpp0x/
noexcept37.C
// PR c++/89571
// { dg-do compile { target c++11 } }

struct A
{
  int i = ;  // { dg-error "expected" }
  A() noexcept = default;
};