view tests/mini/templ1.d @ 466:6989f040ea06

stupid merges
author Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
date Sun, 03 Aug 2008 16:16:16 +0200
parents 1bb99290e03a
children
line wrap: on
line source

module templ1;

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

void main()
{
}