aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/inh-ctor18.C
blob: 05735559a72ed996578786e92a423f5c12e1a15d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// PR c++/56358
// { dg-do compile { target c++11 } }

struct foo {
  explicit foo(int) {}
};

template<typename T>
struct bar: T {
  using T::T;

  // Bad
  explicit bar(): T(0) {}

  void baz()
  {
    // Also bad
    using qux = T;
  }
};

bar<foo> b, b2(42);