PR c++/81917 - ICE with void_t and partial specialization.
[official-gcc.git] / gcc / testsuite / g++.dg / template / crash68.C
blob9171f8c62d909d16f8784c3069bc1aa86511ec57
1 // PR c++/33035
3 template<class A> 
4 struct a {
5         template<class B> 
6         struct b {
7                 template<class C>
8                 void f()
9                 {
10                         struct g
11                         {
12                                 ~g() {}
13                         };
14                 }
15         };