view test/templ1.d @ 190:36044016709a trunk

[svn r206] Fixed some interfaceInfo related issues, closes #44
author lindquist
date Mon, 12 May 2008 14:32:29 +0200
parents f869c636a113
children
line wrap: on
line source

module templ1;

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

void main()
{
}