https://issues.dlang.org/show_bug.cgi?id=4927

Mathias LANG <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
                 CC|                            |[email protected]
         Resolution|---                         |FIXED

--- Comment #7 from Mathias LANG <[email protected]> ---
As mentioned, the issue in the original message was per spec.
However, the part with positional argument was not, and has since been fixed:
```D
import std.stdio;
void main() {
    writefln("A%2$s B%1$s", 10);
}
```

This correctly errors out now.

--

Reply via email to