(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
abi/
pr98531-4.C
// { dg-do compile { target c++11 } }
// { dg-additional-options -fno-use-cxa-atexit }
// PR 98531  Making __cxa_atexit (or atexit) more visible means it
// must be consistent with the std library's declarations

struct C
{
  ~C () noexcept;
  C () noexcept;
};

C &frob ()
{
  static C c; // Requires atexit functionality

  return c;
}

extern "C" int atexit (void (*) (void));