mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 07:00:47 +00:00
11 lines
268 B
Rust
11 lines
268 B
Rust
//@ build-fail
|
|
//@ needs-asm-support
|
|
|
|
use std::arch::global_asm;
|
|
|
|
fn main() {}
|
|
|
|
global_asm!("/* {} */", const 1 << 500); //~ ERROR evaluation of constant value failed [E0080]
|
|
|
|
global_asm!("/* {} */", const 1 / 0); //~ ERROR evaluation of constant value failed [E0080]
|