summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp0x/constexpr-access.C
blob: ee5fc9854fc5ebb103c15e2c7266864575551505 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// { dg-options -std=c++0x }

class base
{
protected:
  constexpr base() { }
};

struct A : base { };

int main()
{
  A a;
}