September 17, 2005
import std.stdio;

class C{
    import std.stdio; //if this line is removed, the code compiles.
}

void main(){
    with(new C)
        std.stdio.writef("");
}
September 17, 2005
zwang schrieb:

> import std.stdio;
> 
> class C{
>     import std.stdio; //if this line is removed, the code compiles.
> }
> 
> void main(){
>     with(new C)
>         std.stdio.writef("");
> }

Added to DStress as http://dstress.kuehne.cn/run/i/import_08_A.d http://dstress.kuehne.cn/run/i/import_08_B.d http://dstress.kuehne.cn/run/i/import_08_C.d (http://dstress.kuehne.cn/addon/i/import_08_Z.d)

Thomas