view test/templ1.d @ 177:cea8dcfa76df trunk

[svn r193] Fixed: abstract classes implementing interfaces now output proper Interface info arrays. (null vtables). Did a little renaming of delegate utils.
author lindquist
date Wed, 07 May 2008 04:45:51 +0200
parents f869c636a113
children
line wrap: on
line source

module templ1;

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

void main()
{
}