struct Base { int x; }; template struct A { static const int N = sizeof(static_cast(T())); int a[N]; }; struct Derived : Base { A a; };