PR c++/81917 - ICE with void_t and partial specialization.
[official-gcc.git] / gcc / testsuite / g++.dg / template / static14.C
blob5bc0e731ac34665b994362f61db24ca6c960ddca
1 struct Base {
2   int x;
3 };
5 template <typename T>
6 struct A {
7   static const int N = sizeof(static_cast<Base*>(T()));
8   int a[N];
9 };
11 struct Derived : Base {
12   A<Derived*> a;