Files
ldc/test/templ2.d
Tomas Lindquist Olsen 1b867a0588 [svn r89] Fixed a bunch of problems with template instance across multiple modules.
Fixed initialization of function local static variables, with a non const initializer (now happens on first call using a global to make sure it only happens once.)
2007-11-02 06:32:32 +01:00

8 lines
61 B
D

module templ2;
import templ1;
void main()
{
func1(1);
}