PR c++/81917 - ICE with void_t and partial specialization.
[official-gcc.git] / gcc / testsuite / g++.dg / debug / pr72808.C
blob7e4688c3e70334644040dbbfc98a7e45f664c7de
1 // PR c++/72808
2 // { dg-do compile }
3 // { dg-options "-g -std=c++14" }
5 struct A
7   virtual void foo ();
8 };
10 struct B : A
12   void foo ();
13   enum C : int;
16 enum B::C : int
18   D
21 void
22 B::foo ()