comparison test/imports2.d @ 17:6c6cd097bcdf trunk

[svn r21] * Fixed local instances of imported templates
author lindquist
date Wed, 03 Oct 2007 06:14:41 +0200
parents 860524276608
children c05ef76f1c20
comparison
equal deleted inserted replaced
16:860524276608 17:6c6cd097bcdf
1 module test; 1 module imports2;
2 import std.stdio; 2 import std.stdio;
3 3
4 void main() { 4 void main() {
5 writefln("Hello world!"[]); 5 writefln("Hello world!"[]);
6 print(42);
7 printf("\n");
6 } 8 }