https://issues.dlang.org/show_bug.cgi?id=11878
Basile-z <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED CC| |[email protected] Resolution|--- |WORKSFORME --- Comment #1 from Basile-z <[email protected]> --- 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 } --
