mirror of
https://github.com/dlang-community/dfmt.git
synced 2025-04-25 21:00:03 +03:00

Allow comments in selective imports. merged-on-behalf-of: Brian Schott <Hackerpilot@users.noreply.github.com>
29 lines
1.2 KiB
D
29 lines
1.2 KiB
D
import std.stdio : readln, /* comment1 */ writeln;
|
|
import std.stdio : readln, // comment2
|
|
writeln;
|
|
import std.stdio : readln,
|
|
// comment3
|
|
writeln;
|
|
import std.stdio : readln,
|
|
/* comment4 */
|
|
writeln;
|
|
import std.stdio : readln, readln, readln, readln, readln, readln, readln, readln, readln, readln, readln,
|
|
// comment5
|
|
writeln;
|
|
import std.stdio : // comment6
|
|
readln, readln, readln, readln, readln, readln, // comment7
|
|
// comment8
|
|
writeln;
|
|
import std.stdio : /* comment9 */
|
|
readln, readln, readln, readln, readln, readln, /* comment10 */
|
|
// comment11
|
|
writeln;
|
|
import std.stdio : readln, // comment12
|
|
readln, readln, readln, readln, readln, readln, // comment13
|
|
// comment14
|
|
writeln;
|
|
import std.stdio : readln,
|
|
// comment15
|
|
readln, readln, readln, readln, readln, readln, // comment16
|
|
// comment17
|
|
writeln;
|