blob: df65dbd3d617ce2cf032fff29f9850c16c89ab4c [file] [log] [blame]
%module cpp_using_type_aliasing
namespace Space {
template<typename T> struct Okay {
};
struct User {
protected:
using OkayInt = Okay<int>;
};
struct Derived : User {
Okay<OkayInt> ff();
};
};