Example:
a.d:
----
module a;
private import std.stdio : writeln;
----
b.d:
----
import a;
void main() {
writeln("This is wrong.");
}
----
WTF? writeln should be private.
I don't like this. :P
Example:
a.d:
----
module a;
private import std.stdio : writeln;
----
b.d:
----
import a;
void main() {
writeln("This is wrong.");
}
----
WTF? writeln should be private.
I don't like this. :P