mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-02 15:13:48 +00:00
9 lines
221 B
Rust
9 lines
221 B
Rust
#![feature(concat_bytes)]
|
|
|
|
fn main() {
|
|
concat_bytes!(7Y);
|
|
//~^ ERROR invalid suffix `Y` for number literal
|
|
concat_bytes!(888888888888888888888888888888888888888);
|
|
//~^ ERROR integer literal is too large
|
|
}
|