https://issues.dlang.org/show_bug.cgi?id=10378

--- Comment #30 from timon.g...@gmx.ch ---
(In reply to hsteoh from comment #29)
> Do you have an example where this is problematic?
> 

Slightly contrived, but here you go:

import std.stdio;

string readAndLog(string filename){
    import std.file;
    auto text=readText(filename);
    write(filename," read successfully!\n");
    return text;
}

void main(){
    writeln(readAndLog("important_data.txt"));
}


> At any rate, it's better than the stonewall silence we've had on import
> issues for many years now.

I agree. This is way better than what we had before. If a fix for hijacking is
implemented, I would personally prefer to pick a proposed solution that
actually fixes the hijacking problems.

--

Reply via email to