view tests/mini/templ1.d @ 911:1d9fe5e2a13c

Fix typo in [909].
author Christian Kamm <kamm incasoftware de>
date Thu, 29 Jan 2009 17:59:25 +0100
parents 1bb99290e03a
children
line wrap: on
line source

module templ1;

T func1(T)(T a)
{
    static T b = a;
    return b;
}

void main()
{
}