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

struct A
{
  int i;
  ~A();
};

constexpr int i = A().i;	// { dg-error "non-literal" }