mirror of
https://github.com/dlang/dmd.git
synced 2025-04-27 05:30:13 +03:00
9 lines
280 B
Text
9 lines
280 B
Text
Deprecate invalid binary literals
|
|
|
|
Prior to this release, binary literals without any digits after the prefix `0b`
|
|
were considered valid. This has now been deprecated.
|
|
---
|
|
auto foo = 0b; // deprecated
|
|
auto bar = 0b_; // deprecated
|
|
auto baz = 0b0; // conforming equivalent
|
|
---
|