summaryrefslogtreecommitdiff
path: root/Tests/CompileFeatures/cxx_inheriting_constructors.cpp
blob: 51400cefc0ebeea1ff9801156a577520b0f01db6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21

struct A
{
  int m_i;

  A(int i)
    : m_i(i)
  {
  }
};

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

void someFunc()
{
  int i = 0;
  B b(i);
}