The C code `long long foo = 0ll;`, compiled with `-std=c2y`, gives: ```c <source>:1:17: warning: octal literals without a '0o' prefix are deprecated [-Wdeprecated-octal-literals] 1 | long long foo = 0ll; | ^ ``` but should not. (same with `0u`, `0l`, `0ul`, `0ull`) https://godbolt.org/z/YKoWs9brM (from [a discussion on Discord](https://discord.com/channels/636084430946959380/646054633923674167/1395873523247091724))