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

struct A
{
};
struct B : A
{
  using A::A;
};