mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 19:03:13 +01:00
12 lines
87 B
D
12 lines
87 B
D
module templ1;
|
|
|
|
T func1(T)(T a)
|
|
{
|
|
static T b = a;
|
|
return b;
|
|
}
|
|
|
|
void main()
|
|
{
|
|
}
|