https://issues.dlang.org/show_bug.cgi?id=12260
Dave Akers <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #1 from Dave Akers <[email protected]> --- Current version of d 2.67.1 will skip the \n, for example the program... ------ void main() { import std.stdio; int input; readf("%s", &input); readf("%s", &input); } ------ Given the input... ------ 1 2 ------ Will emit the error... ------ std.conv.ConvException@/usr/include/dlang/dmd/std/conv.d(2013): Unexpected '2' when converting from type LockingTextReader to type int ------ --
