Thread overview
[Issue 23601] [std.format] acceptedSpecs do match baseOfSpec
Jan 05, 2023
João Lourenço
Jan 06, 2023
Iain Buclaw
January 05, 2023
https://issues.dlang.org/show_bug.cgi?id=23601

--- Comment #1 from João Lourenço <jlourenco5691@gmail.com> ---
Another core feature that does not work is ignoring values with '*' with a
compile-time format string. The reasoning is the same as above, the validation
goes through the 'write' version, and because the meaning is different, the
following should compile but doesn't
```d
import std;

void main()
{
    int i;
    "123".formattedRead!"%d %*u"(i).writeln;
}
```

--
January 06, 2023
https://issues.dlang.org/show_bug.cgi?id=23601

Iain Buclaw <ibuclaw@gdcproject.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Priority|P1                          |P3

--
December 01
https://issues.dlang.org/show_bug.cgi?id=23601

--- Comment #2 from dlangBugzillaToGithub <robert.schadek@posteo.de> ---
THIS ISSUE HAS BEEN MOVED TO GITHUB

https://github.com/dlang/phobos/issues/9853

DO NOT COMMENT HERE ANYMORE, NOBODY WILL SEE IT, THIS ISSUE HAS BEEN MOVED TO GITHUB

--