mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
21 lines
185 B
D
21 lines
185 B
D
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);
|
|
}
|