Extending structs and constructor inheritance

C++11 introduces constructor inheritance.

struct A {
    A(int) {}
    A(double) {}
    A(int, double) {}
};

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

I’m not seeing this feature being supported presently in UE4. Are there any plans to add support for it?

Thanks,