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

struct A
{
  // constexpr operator int () { return 1; }
};

constexpr A a = A();

int ar[a]; // { dg-error "has non-integral type" }