1 // PR debug/80234
2 // { dg-do compile { target c++17 } }
3 // { dg-options "-gdwarf-4" }
4 
5 struct S
6 {
7   static constexpr const char n = 'S';
8   virtual ~S ();
9 };
10 
11 constexpr const char S::n;
12 
~S()13 S::~S()
14 {
15 }
16