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

--- Comment #26 from [email protected] ---
At the moment, we can only write this:

import a, b, c : baz;

And we can not write this:

import a : foo, b : bar, c : baz;

So do not be, because it is completely unreadable (if a lot of modules - a
comma separates bad visibility modules, as it was written in the topic of
Martin Novak):

import a : foo, b : bar, c : baz;

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

My version allows you to write perfectly readable code with a semicolon:

import {
    a : foo;
    b : bar;
    c : baz;
}

--

Reply via email to