(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
debug/
dwarf2/
pr80234-1.C
// PR debug/80234
// { dg-do compile { target c++17 } }
// { dg-options "-gdwarf-4" }

struct S
{
  static constexpr const char n = 'S';
  virtual ~S ();
};

constexpr const char S::n;

S::~S()
{
}