PR c++/81917 - ICE with void_t and partial specialization.
[official-gcc.git] / gcc / testsuite / g++.dg / pr79764.C
blob293aa33769309eb4fef1098cd06c5acb1cda3ff0
1 /* { dg-do compile { target { { i?86-*-* x86_64-*-* } && { ! x32 } } } } */
2 /* { dg-options "-fcheck-pointer-bounds -mmpx" } */
4 typedef float __m256 __attribute__ (( __vector_size__(32), __may_alias__ ));
5 struct A {
6   __m256 ymm;
7   const float &f() const;
8 };
10 const float &A::f() const {
11   return ymm[1];