aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/pr59641.C
blob: 36af96a892d0ae096d64e99dfa0f8d9a35b91f21 (plain)
1
2
3
4
5
6
7
8
// { dg-do compile { target c++11 } }
typedef int T __attribute__((vector_size(2*sizeof(int))));

void foo(T& r, const T& a, const T& b)
{
  constexpr T c = a < b; // { dg-error "constant" }
  r = c ? a : b;
}