aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp2a/constexpr-dtor4.C
blob: ad03987f8902a63caa406db63ef661481229b1bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// PR c++/92414
// { dg-do compile { target c++20 } }

struct A { virtual void foo (); };

struct B : A {
  constexpr B (int);	// { dg-warning "used but never defined" }
  constexpr ~B () { }
};

struct D : B {
  constexpr D () : B (42) { }	// { dg-error "used before its definition" }
};

constexpr D d;	// { dg-message "in 'constexpr' expansion of" }