#include <iostream>
using namespace std;

struct A {
    A(int xx) : x(xx) {}
    int x;
};

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

int main() {
    B b(5);
    return 0;
}