(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
torture/
pr57499.C
// PR middle-end/57499
// { dg-do compile }

struct S
{
  ~S () __attribute__ ((noreturn)) {} // { dg-warning "function does return" }
};

void
foo ()
{
  S s;
  throw 1;
}