2016-12-07 Thomas Preud'homme <thomas.preudhomme@arm.com>
[official-gcc.git] / gcc / testsuite / g++.dg / ext / vector17.C
blobeb389be01a86b156dc818b0d84c50e308e06c53c
1 /* { dg-do compile } */
2 typedef double __attribute__((vector_size(1024) )) vec;
4 template <class T>
5 void f (T *p)
7   p->~T();
9 void g (vec *p)
11   f(p);