aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/defaulted46.C
blob: d4562c95903514fbfbe15335e1b423c4067fdcb2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// { dg-require-effective-target c++11 }

struct A
{
protected:
  A() = default;
  int i;
};

struct B: A {
  B() = default;
};

int main()
{
  B();
}