view test/templ1.d @ 330:5bea8a1ef905 trunk

[svn r351] Remove unused runtime file for DMD-style exception handling. Improved comments on exception handling runtime.
author ChristianK
date Fri, 11 Jul 2008 20:23:42 +0200
parents f869c636a113
children
line wrap: on
line source

module templ1;

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

void main()
{
}