Files
ldc/tests/mini/templ1.d

12 lines
87 B
D

module templ1;
T func1(T)(T a)
{
static T b = a;
return b;
}
void main()
{
}