view test/templ1.d @ 272:94ef6d63f7bb trunk

[svn r293] Fixed: object.TypeInfo_Struct implementation was incorrect.
author lindquist
date Wed, 18 Jun 2008 22:27:02 +0200
parents f869c636a113
children
line wrap: on
line source

module templ1;

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

void main()
{
}