// PR c++/36662 // { dg-do compile { target powerpc*-*-* } } // { dg-require-effective-target powerpc_altivec_ok } // { dg-options "-maltivec" } #define vector __attribute__((altivec (vector__))) template struct S {}; template <> struct S { static vector float zero; }; template void g (void) { vector float t = S::zero; }