Destroy. https://github.com/dlang/DIPs/pull/51/filesAndrei
I think the DIP indicated you may have considered this, but why not just remove the requirement of 'static import ..' for using fully qualified names?
struct Buffered(Range) if (std.range.isInputRange!Range)
{
import std.range;
// ...
}
You could then simply qualify any parameters or constraints and
use local imports for the body.
Bit
