February 20, 2020
https://issues.dlang.org/show_bug.cgi?id=11878

Basile-z <b2.temp@gmx.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
                 CC|                            |b2.temp@gmx.com
         Resolution|---                         |WORKSFORME

--- Comment #1 from Basile-z <b2.temp@gmx.com> ---
It works on base2 literals.
It work on hex but the problem here was that f is an hex digit...

void zoo(int x) {}
void main() {
    33.zoo; // OK
    0b100001.zoo; // OK
    0x21.zoo; // OK
}

--
March 21, 2020
https://issues.dlang.org/show_bug.cgi?id=11878

Basile-z <b2.temp@gmx.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|b2.temp@gmx.com             |

--