blob: 7f40a5f5bfcb74147ac233d5d2d5987eeb3cbd37 [file] [log] [blame]
module imports.test21a;
struct TC(T)
{
void method()
{
void inline_function()
{
}
}
}
template TB(T)
{
alias TC!(T) tc_instance;
}
struct TA(T)
{
mixin TB!(T);
}