summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp0x/constexpr-abi1.C
blob: e83f142300aec028b06f5683e6dc6bcb268b2cd7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// PR c++/47301
// { dg-options "-std=c++0x -fabi-version=1" }

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

template < int > struct B
{
  static constexpr A a = A();
  int ar[a];
};