1 module imports.test21a;
2 
TC(T)3 struct TC(T)
4 {
5  void method()
6  {
7      void inline_function()
8      {
9      }
10  }
11 }
12 
TB(T)13 template TB(T)
14 {
15  alias TC!(T) tc_instance;
16 }
17 
TA(T)18 struct TA(T)
19 {
20  mixin TB!(T);
21 }
22