blob: a386284ab017a3d616b59065fdbe5030c8f90eef [file] [log] [blame]
%module("templatereduce") template_typedef_ns
%inline {
namespace Alpha {
typedef int Integer;
}
namespace Beta {
template <typename Value>
struct Alpha {
Value x;
};
}
}
%template(AlphaInt) Beta::Alpha<Alpha::Integer>;