PR c++/81917 - ICE with void_t and partial specialization.
[official-gcc.git] / gcc / testsuite / g++.dg / template / class2.C
blob4144997fe160d2502f032fd22231516a756ccf31
1 // PR c++/13451
3 template <class T>
4 struct A {
5   struct B;
6   struct A::B { }; // { dg-error "" }
7 };