void main() { import std.stdio: readf, stdin; int[] v; stdin.readf("%(%d %)", v); } dmd 2.066alpha: ...\dmd2\src\phobos\std\format.d(575,26): Deprecation: using * on an array is deprecated; use *(_param_2).ptr instead ...\dmd2\src\phobos\std\format.d(586,13): Deprecation: using * on an array is deprecated; use *(_param_2).ptr instead
Even if worked around the code doesn't seem to work at runtime: object.Exception@C:\dmd-git\dmd2\windows\bin\..\..\src\phobos\std\format.d(4069): Wrong unformat specifier '%(' for int Do you know if 'stdin.readf("%(%d %)", array);' has ever been supported?
You've already reported it ^^ *** This issue has been marked as a duplicate of issue 8260 ***