Name lookups in D

kdevel kdevel at vogtner.de
Fri Dec 11 01:34:13 UTC 2020


On Monday, 16 November 2020 at 13:07:21 UTC, Steven Schveighoffer 
wrote:
> import std.stdio;
>
> std.stdio.writeln("bar"); // OK

Is this expected?

void main ()
{
    {
       import std.stdio;
       std.stdio.writeln ("test"); // okay
    }
    {
       import std.stdio : writeln;
       std.stdio.writeln ("test"); // Error: undefined identifier 
std
    }
}



More information about the Digitalmars-d mailing list