// PR c++/18121 // We were trying to layout the array // type but since the type/value of A::i // was not known at template declation type, // we were crashing template struct A { static int const i = 1; }; template struct B { typedef int (*p)[A::i]; };