view gcc/testsuite/g++.dg/debug/dwarf2/pr80234-2.C @ 158:494b0b89df80 default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:13:55 +0900
parents 84e7813d76e9
children
line wrap: on
line source

// PR debug/80234
// { dg-do compile { target c++17 } }
// { dg-options "-gdwarf-5" }

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

constexpr const char S::n;

S::~S()
{
}