PR c++/81917 - ICE with void_t and partial specialization.
[official-gcc.git] / gcc / testsuite / g++.dg / template / using28.C
blob52f68cfe467b9a7e4976d61703ed1e5c49b11b8d
1 // PR c++/37140
3 struct C
5   static const int block_size = 1;
6 };
8 template <typename T> struct A {
9   typedef C type;
12 template <typename T> struct B : public A<T> {
13   using typename A<T>::type;
14   static const int block_size = type::block_size;
17 template class B<int>;