about summary refs log tree commit diff
path: root/tests/ui/asm/fail-const-eval-issue-121099.rs
blob: c91bbfd1b73f950c4a9744da22b648dc2b6ca5b6 (plain)
1
2
3
4
5
6
7
8
9
10
//@ build-fail
//@ needs-asm-support

use std::arch::global_asm;

fn main() {}

global_asm!("/* {} */", const 1 << 500); //~ ERROR E0080

global_asm!("/* {} */", const 1 / 0); //~ ERROR E0080