aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/constexpr-ice12.C
blob: 98f53b14c104b943b59c903495fc92bc86b0efec (plain)
1
2
3
4
5
6
7
8
9
// PR c++/58609
// { dg-do compile { target c++11 } }

struct A
{
  static constexpr int&& i = 0;  // { dg-error "initialization" }
};

int j = A::i;